diff options
| author | jdhao <jdhao@hotmail.com> | 2020-11-26 21:13:07 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2020-11-26 21:13:07 +0800 |
| commit | 42751cb1dd9cff3090a7552926eb8871e83e3c14 (patch) | |
| tree | 0d33dee580d111f06d456551940f0ef717b72f07 | |
| parent | 113996452cf5b5a84c39d1c73122cabda9041d7c (diff) | |
make mapping buffer local
| -rw-r--r-- | after/ftplugin/python.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/after/ftplugin/python.vim b/after/ftplugin/python.vim index f8177db..def7141 100644 --- a/after/ftplugin/python.vim +++ b/after/ftplugin/python.vim @@ -1,5 +1,5 @@ if exists(':AsyncRun') - nnoremap <silent> <F9> :<C-U>AsyncRun python -u "%"<CR> + nnoremap <buffer><silent> <F9> :<C-U>AsyncRun python -u "%"<CR> endif " Do not wrap Python source code. |
