Daniel Hahler
75e9141111
Cast integers with vim_eval
...
This makes it clearer/more strict altogether and is future-proof in the
sense that `vim.eval` might return integers for numbers in Vim after all.
See #553 for a very noisy discussion of what led to this.
Although it might be a regression in neovim-python after all it is good
to be on the safe side.
The bonus here is that we get "notified" in case of a option that is
expected to be an integer is a string instead.
Fixes https://github.com/davidhalter/jedi-vim/issues/553 .
2016-04-08 14:37:44 +02:00
Daniel Hahler
0d613b5cf9
Merge pull request #549 from mozbugbox/rename-fix
...
Fix renaming: cursor pos and undo tracking (#545 , #502 )
2016-03-21 22:19:59 +01:00
mozbugbox
794af5b90a
Track undo properly in rename(). Fix #502
...
Use vim changenr() call to track change and undo. This is more
robust than bindly call 'normal! u'
2016-03-21 09:53:57 +08:00
mozbugbox
221d7dbee4
Fix: rename() kept wrong cursor position #545
...
The cursor would change to something else once in the insert mode. If
the new name was longer than the old one, the Parser couldn't get
the stmt at the wrong cursor position, thus rename failed.
Now save the cursor position before entering the insert mode. Then pass
the saved position to the 2nd call to the rename().
2016-03-20 23:05:15 +08:00
Dave Halter
e7193b5e5f
Merge pull request #547 from blueyed/improve-error-on-init
...
Improve error messages during init
2016-03-20 04:34:08 +01:00
Dave Halter
9ae6da6467
Merge pull request #548 from blueyed/use-m-with-search
...
jedi#smart_auto_mappings: use `\m` with `search()` for `magic`
2016-03-20 04:33:53 +01:00
Daniel Hahler
f08abefa31
jedi#smart_auto_mappings: use \m with search() for magic
...
With `nomagic` being set (not recommended, but might happen), the
pattern would not work.
This patch sets `\m` explicitly.
2016-03-18 23:16:07 +01:00
Daniel Hahler
cdfb7a5b4f
initialize.py: catch and handle any exception when import jedi_vim
...
This adds the traceback to it, which then will be displayed with
`v:exception` in the Vim part.
2016-03-18 23:08:49 +01:00
Daniel Hahler
de793216f5
minor: move code out of 'try' block in jedi#setup_py_version
2016-03-18 23:07:43 +01:00
Daniel Hahler
6b8d900b05
Use echoerr in jedi#init_python
...
This will abort the script, instead of finishing there only.
2016-03-18 23:06:43 +01:00
Daniel Hahler
df39189578
Fix no_jedi_warning: display actual error
...
Never really worked as intended in 676b378 .
Ref: https://github.com/davidhalter/jedi-vim/issues/460
2016-03-18 23:05:07 +01:00
Dave Halter
625c568b12
Merge pull request #527 from prologic/master
...
Fixes Python 2.6 compatibility issues with `str.format()`
2016-01-14 14:14:44 +01:00
James Mills
8215b220f9
Fixed Python 2.6 str.format() compatibility
2016-01-13 14:00:41 -08:00
Dave Halter
dc23f0b859
Merge pull request #501 from kashiro/fix/auto-selected-last-opt
...
check "noselect" and "noinsert" before <C-p>
0.8.0
2015-11-19 13:15:06 +01:00
Tomoyuki Kashiro
217e56d9bd
check "noselect" and "noinsert" before <C-p>
...
to prevent from selecting last option check "noselect" and "noinsert" before <C-p>
@see https://github.com/Shougo/neocomplete.vim/blob/master/doc/neocomplete.txt#L1817-L1826
2015-11-19 18:49:15 +09:00
Jacob Niehus
0c2831d9a6
Fix parameters missing from command line call signatures
...
Parameters (or ellipsis) should show up in call signatures even when the
index of the current argument is unknown.
Closes https://github.com/davidhalter/jedi-vim/pull/499 .
2015-11-12 02:03:46 +01:00
Dave Halter
b3e91e8de2
Merge pull request #497 from wilywampa/buffer_autocmds
...
Fix signatures only working in a single buffer
2015-11-07 21:15:14 +01:00
Jacob Niehus
13a4a0c0c4
Fix signatures only working in a single buffer
2015-11-07 11:43:56 -07:00
Jacob Niehus
2cf1d42fff
Fix handling of temporary tags file on Windows
...
Fixes https://github.com/davidhalter/jedi-vim/issues/482 .
Closes https://github.com/davidhalter/jedi-vim/pull/489 .
2015-11-02 01:04:16 +01:00
Bagrat Aznauryan
84f5cd92c7
Use escape_file_path in new_buffer
...
Fix: If a definition file path contains a space, the "open in split"
fails with an error.
Fixes https://github.com/davidhalter/jedi-vim/issues/491 .
Closes https://github.com/davidhalter/jedi-vim/issues/492 .
2015-11-02 01:02:22 +01:00
Daniel Hahler
9af06424fb
doc/jedi-vim.txt: retab with expandtab
...
Fixes https://github.com/davidhalter/jedi-vim/issues/437 .
Closes https://github.com/davidhalter/jedi-vim/pull/487 .
2015-10-26 23:53:55 +01:00
Jacob Niehus
4b32847110
Fix issues with wildignore and tag stack
...
Closes https://github.com/davidhalter/jedi-vim/pull/483 .
Fixes https://github.com/davidhalter/jedi-vim/issues/482 .
2015-10-23 00:31:28 +02:00
Daniel Hahler
a5be01fb0b
Merge pull request #481 from blueyed/improve-taglist-hack
...
Improve use_tag_stack-hack: use context managers, short 'tags'
2015-10-19 23:47:00 +02:00
Daniel Hahler
267df8b3da
Improve use_tag_stack-hack: use context managers, short 'tags'
...
Use a NamedTemporaryFile context manager, which removes the temporary
file again, and use it as the only entry for the 'tags' setting to
improve lookup performance.
2015-10-19 18:29:54 +02:00
Daniel Hahler
005cb5225f
Use string.ascii_lowercase instead of string.lowercase
...
Fixes https://github.com/davidhalter/jedi-vim/issues/478 .
Closes https://github.com/davidhalter/jedi-vim/pull/480 .
2015-10-18 22:14:31 +02:00
Dave Halter
95d8eb1b08
Merge pull request #479 from blueyed/fix-cached-signature-call
...
Handle parenthesis with show_call_signatures' cache
2015-10-18 21:45:18 +02:00
Daniel Hahler
431a0b11e5
Handle parenthesis with show_call_signatures' cache
...
After `o`, call signatures should show up after `abs(`.
2015-10-18 21:22:11 +02:00
Daniel Hahler
9a258c74f5
Merge branch 'wilywampa-callsig_columns'
...
Truncate command line call signature as described in #474 when the full
signature is too long to display.
Closes https://github.com/davidhalter/jedi-vim/issues/474 .
Closes https://github.com/davidhalter/jedi-vim/pull/475 .
2015-10-18 21:16:48 +02:00
Daniel Hahler
5c868b9a1f
Use utf8 ellipsis char instead of 3 dots
2015-10-18 21:16:37 +02:00
Jacob Niehus
62c423bf29
Add test case for truncation of cmdline signatures
2015-10-18 21:16:37 +02:00
Jacob Niehus
7abc3ad8d4
Truncate long command line call signatures
2015-10-18 21:16:37 +02:00
Jacob Niehus
9633044332
Allow fewer columns in call signatures if 'ruler' is set
2015-10-18 21:16:37 +02:00
Dave Halter
067ab1ea4b
Merge pull request #477 from blueyed/fix-cached-signature-call
...
Invalidate `show_call_signatures_delay` on InsertEnter
2015-10-18 21:01:37 +02:00
Daniel Hahler
e38981fc4f
Invalidate show_call_signatures_delay on InsertEnter
...
Followup to e241cf87fd .
Ref: https://github.com/davidhalter/jedi-vim/pull/420 .
Ref: https://github.com/davidhalter/jedi-vim/pull/475#issuecomment-149013542 .
2015-10-18 16:07:09 +02:00
Dave Halter
8ee4e12d3e
Merge pull request #458 from wilywampa/goto_tagstack
...
Add g:jedi#use_tag_stack feature for jedi#goto()
2015-10-18 11:51:11 +02:00
Jacob Niehus
b38ec94646
Improve documentation of use_tag_stack option
2015-10-16 12:55:40 -07:00
Jacob Niehus
9c235c79ac
Fix hidden check again
2015-10-16 12:55:40 -07:00
Jacob Niehus
8cfa121b4d
Fix using tabs/splits instead of buffers
2015-10-16 12:55:40 -07:00
Jacob Niehus
c94fe6fcee
Check if buffer can be hidden before tjump
2015-10-16 12:55:40 -07:00
Jacob Niehus
5041224c13
Use vim tempname() instead of Python tempfile
2015-10-16 12:55:40 -07:00
Jacob Niehus
4867831ad0
Add g:jedi#use_tag_stack feature for jedi#goto()
2015-10-16 12:55:40 -07:00
Dave Halter
610cbcacb7
Merge pull request #436 from blueyed/delayed-call-signatures
...
Delayed call signatures
2015-10-14 15:05:58 +02:00
Dave Halter
b5ec9ac3ed
Merge pull request #472 from blueyed/CONTRIBUTING.md-debug-info
...
CONTRIBUTING.md: request :version and :JediDebugInfo output
2015-10-09 00:23:21 +02:00
Daniel Hahler
253eb5102c
CONTRIBUTING.md: request :version and :JediDebugInfo output
...
Also add sections, and fix style instructions.
[ci skip]
2015-10-08 17:30:35 +02:00
Daniel Hahler
9ec2fb44b0
smart_auto_mappings: look for from only at the start of a line
...
Fixes https://github.com/davidhalter/jedi-vim/issues/469 .
Closes https://github.com/davidhalter/jedi-vim/pull/470 .
2015-10-06 01:44:26 +02:00
Daniel Hahler
e241cf87fd
Conditionally skip calls to jedi_vim.show_call_signatures
...
Skip calls to `jedi_vim.show_call_signatures` if the (position of the) current
function's argument did not change (by means of comma positions before
and after the cursor).
Ref: https://github.com/davidhalter/jedi-vim/pull/420
2015-10-03 15:43:39 +02:00
Dave Halter
525524b5cf
Merge pull request #464 from itchyny/fix-global-env-pollution
...
make `key` and `val` script local
2015-09-28 00:49:33 +02:00
itchyny
267f66755d
make key and val script local
2015-09-28 07:02:30 +09:00
Daniel Hahler
6b96313930
Add show_call_signatures_delay option
...
This will use CursorHoldI instead of CursorMovedI for displaying call
signatures, with a delay of 500ms by default.
This greatly enhances the experience with slow call signatures while typing
(depending on how fast Jedi is for the given context).
2015-09-10 11:55:04 +02:00
Daniel Hahler
afc02a3621
Wrap jedi#configure_call_signatures in augroup
2015-09-10 11:55:03 +02:00