Commit Graph

227 Commits

Author SHA1 Message Date
David Halter 622331afa4 Merge pull request #138 from heavenshell/fix_deprecation_warning
Fix not to use deprecated method
2013-05-31 12:07:00 -07:00
heavenshell 9c3e9dbe03 Fix goto() deprecation. 2013-06-01 00:59:49 +09:00
heavenshell a8422d3682 Fix get_in_function_call() deprecation. 2013-06-01 00:56:04 +09:00
heavenshell 6f107578ee Fix related_names() deprecation. 2013-06-01 00:50:02 +09:00
heavenshell 355203cab0 Fix goto() deprecation. 2013-06-01 00:47:11 +09:00
heavenshell e4a2a0f30e Fix get_definition() deprecation. 2013-06-01 00:41:04 +09:00
heavenshell efb1997218 Fix show_pydoc() get_definition() deprecation. 2013-06-01 00:37:15 +09:00
heavenshell cf3182e549 Fix complete() deprecation. 2013-06-01 00:27:14 +09:00
David Halter 2cc0adcc65 Merge pull request #135 from mlmoses/fix-python3-errors
Fix errors when vim is compiled with +python3.
2013-05-19 01:06:18 -07:00
Matthew Moses d56bf264e7 Fix some errors when vim is compiled with +python3.
When vim is compiled with `-python` and `+python3`, jedi-vim generates
errors because of two points in the code which are not compatible with
Python 3 (because of the `str`/`unicode` vs. `bytes`/`str` thing).
2013-05-19 03:41:46 -04:00
David Halter b9fef7b969 renamed Pyedit to Pyimport, refs #117 2013-05-19 00:25:00 +04:30
David Halter dd70fa0891 Merge branch 'dev' into newtab 2013-05-19 00:13:42 +04:30
David Halter ccc901f360 use is_keyword instead of hack 2013-05-19 00:11:27 +04:30
David Halter f88c11e353 Merge branch 'bugfix-newtab-syntax' of git://github.com/artnez/jedi-vim into newtab 2013-05-18 22:44:49 +04:30
David Halter e8e1cc7d47 improve indentation of #117 2013-05-18 21:53:44 +04:30
David Halter 34bf4479d8 Merge branch 'master' of git://github.com/coot/jedi-vim into pyedit 2013-05-18 21:36:50 +04:30
David Halter 403028a50c ctrl space cycles now through results, when used multiple times, fixes #118 2013-05-18 19:55:30 +04:30
David Halter 3ae35c1ea1 add doc/tags to gitignore 2013-05-18 13:46:23 +04:30
David Halter fcc8cf5185 new jedi version also in sub repository 2013-05-18 13:14:11 +04:30
David Halter ab5065753e update jedi notification 2013-05-14 22:20:39 +04:30
David Halter daa7f1c60c Merge remote-tracking branch 'origin/master' into dev 2013-05-14 22:12:54 +04:30
David Halter 42b240c366 Merge branch 'dev' of github.com:davidhalter/jedi-vim into dev 2013-05-14 22:12:17 +04:30
Danilo Bargen 211cbf1fb7 Changed jedi submodule protocol (fixes #129) 2013-04-27 17:22:11 +02:00
Danilo Bargen 001db4bfe5 Changed jedi submodule protocol (fixes #129) 2013-04-25 10:27:58 +02:00
Marcin Szamotulski 422ad483c1 g:jedi#quickfix_window_height
This commit adds an option g:jedi#quickfix_window_height, with the
    default value 10 (as this is the default value for :copen)
2013-03-17 13:47:17 +00:00
Marcin Szamotulski 165dea0a2c added :Pyedit vim command
:Pyedit [++opt] [+cmd] module

    module is a python module, there is a completion for them as well.
    [opt] and [cmd] are like for the :edit command.
2013-03-17 13:32:04 +00:00
Artem Nezvigin 5b1a253e9b Fix new tabs overriding default syntax rules
Calling `syntax on` will override existing syntax rules with default
ones. This ends up adding a bunch of syntax rules that users have
disabled.

See `:help syntax` for this snippet:

    The ":syntax enable" command will keep your current color settings. This
    allows using ":highlight" commands to set your preferred colors before or
    after using this command.  If you want Vim to overrule your settings with
    the defaults, use: `:syntax on`

Calling `:syntax enable` doesn't appear to work either. It does the same thing
as `:syntax on`. So the solution implemented here is to conditionally set the
filetype and syntax rules when they aren't already set.
2013-03-02 11:14:57 -08:00
David Halter 8c482c72db Merge pull request #108 from runiq/vimdoc
Add vimdoc help file
2013-03-01 22:26:59 -08:00
Patrice Peterson 354f8da568 Minor capitalization and awkward wording fixes
- Replace all occurences of Jedi-Vim/Jedi with jedi-vim/jedi
- Capitalize first letter on bullet points
- oh god how do i english
- Fix wrong description of g:jedi#auto_close_doc option
2013-03-02 05:17:09 +01:00
Patrice Peterson 31611335b4 Out of beta, yay 2013-03-02 04:58:47 +01:00
Patrice Peterson a8726171bf Add license section 2013-03-01 21:11:50 +01:00
Patrice Peterson 4c0652064a Added blurb about configuration in .vimrc
I don't know if this should even be in there because it seems kind of
like a bug.
2013-03-01 20:57:04 +01:00
Patrice Peterson 0d27821064 Add usage section and goto/find_def explanation
The usage section feels sort of superfluous. I don't know. >:(

The distinction between jedi#goto() and jedi#fund_definition() was a bit
unclear, so I expanded it a bit.
2013-03-01 20:57:04 +01:00
Patrice Peterson 93e49bb888 Add install, intro, and features sections 2013-03-01 20:57:04 +01:00
Patrice Peterson 84a982ee26 Document keybindings and options
All keybindings and options have at least a short description added to
them.

With this commit the general structure of a Vim help file is in place.
2013-03-01 20:57:04 +01:00
Patrice Peterson 4bc8a44453 Cosmetic and formatting fixes
- Remove images in introduction
- Replace all occurences of VIM with Vim
- Use Vim code blocks
- Surround all keybindings with <>
2013-03-01 20:57:04 +01:00
Patrice Peterson e6ef96412e Add vimdoc documentation
For now, this is just the README.rst file with appropriate sections. The
content of the file itself is completely unchanged.

Section name suggestions are taken from Steve Losh's Learn Vimscript the
Hard Way [1]. Formatting suggestions are taken from Vim's own
documentation on writing help files (:help help-writing).

The spiffy header was created using the figlet program [2] and the
starwars.flf font found in the figlet fonts database [3].

[1] http://learnvimscriptthehardway.stevelosh.com/chapters/54.html
[2] http://www.figlet.org
[3] http://www.figlet.org/fonts/starwars.flf
2013-03-01 20:57:04 +01:00
David Halter c1026023f2 Merge pull request #107 from runiq/silent-dot-mappings
Silence dot completion mappings
2013-03-01 07:35:44 -08:00
Patrice Peterson 15605d77d6 Silence dot completion mappings
I find the long line that pops up in the command-line whenever I press
`.` a bit distracting, and it would potentially overwrite other useful
information displayed in there. This change silences the dot completion
commands.
2013-03-01 13:06:00 +01:00
David Halter a763f12b4e default encoding for VIM compiled with -multibyte, fixes #100 2013-02-24 08:57:36 +04:30
David Halter d0b0413e7b Merge branch 'dev' of github.com:davidhalter/jedi-vim into dev 2013-02-24 08:50:02 +04:30
David Halter 7d1d5bd492 Merge pull request #101 from ricobl/tabnew-drop
Improved opening file in existing or new tab.
2013-02-23 11:37:55 -08:00
Enrico 7577ddc7a7 Removed has_gui variable. 2013-02-23 16:16:59 -03:00
Enrico 61f457b666 Used tab drop only when gui is available. 2013-02-23 15:57:09 -03:00
Enrico f9ea25ec4e Improved opening file in existing or new tab. 2013-02-22 10:48:56 -03:00
David Halter 6a4d7c40ca Merge pull request #89 from ethinx/issue80
Fix #80 "Not an editor command: Python << PYTHONEOF"
2013-02-05 02:18:20 -08:00
York Wong ed8dcf6f5d Fix #80 "Not an editor command: Python << PYTHONEOF" 2013-02-05 17:35:45 +08:00
David Halter c2cbe4133e Merge branch 'dev' of github.com:davidhalter/jedi-vim into dev 2013-01-25 14:28:59 +01:00
David Halter 1d14abfff8 updated AUTHORS.txt, added @mattn, @ming13, @hattya, @flupke, @lilix, @strycore, @ganwell, @todesschaf, @Tinche 2013-01-25 14:28:48 +01:00
David Halter fdcc192def Merge pull request #83 from andviro/master
fix for #81
2013-01-25 01:37:24 -08:00