annotate runtime/ftplugin/python.vim @ 35229:925475d6ebae default tip

runtime(matchit): update matchit plugin to v1.20 Commit: https://github.com/vim/vim/commit/8cf29e4c4a2af75bf31ef16ef108aea61c165af8 Author: Christian Brabandt <cb@256bit.org> Date: Mon May 20 20:02:16 2024 +0200 runtime(matchit): update matchit plugin to v1.20 fixes: https://github.com/vim/vim/issues/14814 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 20 May 2024 20:15:02 +0200
parents df99ac9547f6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 " Vim filetype plugin file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 " Language: python
35165
d0498ef60b5b ftplugin(python): E16 fix, async keyword support for define (#14751)
Christian Brabandt <cb@256bit.org>
parents: 34134
diff changeset
3 " Maintainer: Tom Picton <tom@tompicton.com>
12756
3b26420fc639 Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents: 10261
diff changeset
4 " Previous Maintainer: James Sully <sullyj3@gmail.com>
9286
64035abb986b commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents: 5663
diff changeset
5 " Previous Maintainer: Johannes Zellner <johannes@zellner.org>
35175
df99ac9547f6 runtime(python): Fix wrong define regex in ftplugin (#14763)
Christian Brabandt <cb@256bit.org>
parents: 35165
diff changeset
6 " Last Change: 2024/05/13
12756
3b26420fc639 Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents: 10261
diff changeset
7 " https://github.com/tpict/vim-ftplugin-python
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 if exists("b:did_ftplugin") | finish | endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 let b:did_ftplugin = 1
3496
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 827
diff changeset
11 let s:keepcpo= &cpo
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 827
diff changeset
12 set cpo&vim
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 setlocal cinkeys-=0#
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 setlocal indentkeys-=0#
5663
1dea14d4c738 Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents: 5510
diff changeset
16 setlocal include=^\\s*\\(from\\\|import\\)
35175
df99ac9547f6 runtime(python): Fix wrong define regex in ftplugin (#14763)
Christian Brabandt <cb@256bit.org>
parents: 35165
diff changeset
17 setlocal define=^\\s*\\(\\(async\\s\\+\\)\\?def\\\|class\\)
13482
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
18
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
19 " For imports with leading .., append / and replace additional .s with ../
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
20 let b:grandparent_match = '^\(.\.\)\(\.*\)'
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
21 let b:grandparent_sub = '\=submatch(1)."/".repeat("../",strlen(submatch(2)))'
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
22
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
23 " For imports with a single leading ., replace it with ./
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
24 let b:parent_match = '^\.\(\.\)\@!'
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
25 let b:parent_sub = './'
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
26
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
27 " Replace any . sandwiched between word characters with /
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
28 let b:child_match = '\(\w\)\.\(\w\)'
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
29 let b:child_sub = '\1/\2'
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
30
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
31 setlocal includeexpr=substitute(substitute(substitute(
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
32 \v:fname,
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
33 \b:grandparent_match,b:grandparent_sub,''),
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
34 \b:parent_match,b:parent_sub,''),
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
35 \b:child_match,b:child_sub,'g')
9eebe457eb3c Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents: 13125
diff changeset
36
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37 setlocal suffixesadd=.py
5510
d7d7bac1a163 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5400
diff changeset
38 setlocal comments=b:#,fb:-
d7d7bac1a163 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5400
diff changeset
39 setlocal commentstring=#\ %s
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40
13125
371ceeebbdaa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12826
diff changeset
41 if has('python3')
22565
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
42 setlocal omnifunc=python3complete#Complete
16086
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
43 elseif has('python')
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
44 setlocal omnifunc=pythoncomplete#Complete
13125
371ceeebbdaa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12826
diff changeset
45 endif
626
732c7ae5743e updated for version 7.0180
vimboss
parents: 7
diff changeset
46
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47 set wildignore+=*.pyc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48
10261
bdd7fc1a38c0 commit https://github.com/vim/vim/commit/dc08328821a2c11e33dfb1980332e4923ec64fca
Christian Brabandt <cb@256bit.org>
parents: 10153
diff changeset
49 let b:next_toplevel='\v%$\|^(class\|def\|async def)>'
bdd7fc1a38c0 commit https://github.com/vim/vim/commit/dc08328821a2c11e33dfb1980332e4923ec64fca
Christian Brabandt <cb@256bit.org>
parents: 10153
diff changeset
50 let b:prev_toplevel='\v^(class\|def\|async def)>'
12756
3b26420fc639 Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents: 10261
diff changeset
51 let b:next_endtoplevel='\v%$\|\S.*\n+(def\|class)'
3b26420fc639 Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents: 10261
diff changeset
52 let b:prev_endtoplevel='\v\S.*\n+(def\|class)'
10261
bdd7fc1a38c0 commit https://github.com/vim/vim/commit/dc08328821a2c11e33dfb1980332e4923ec64fca
Christian Brabandt <cb@256bit.org>
parents: 10153
diff changeset
53 let b:next='\v%$\|^\s*(class\|def\|async def)>'
bdd7fc1a38c0 commit https://github.com/vim/vim/commit/dc08328821a2c11e33dfb1980332e4923ec64fca
Christian Brabandt <cb@256bit.org>
parents: 10153
diff changeset
54 let b:prev='\v^\s*(class\|def\|async def)>'
12826
f690da1b3c04 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
55 let b:next_end='\v\S\n*(%$\|^(\s*\n*)*(class\|def\|async def)\|^\S)'
f690da1b3c04 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
56 let b:prev_end='\v\S\n*(^(\s*\n*)*(class\|def\|async def)\|^\S)'
10153
715d6c5707b8 commit https://github.com/vim/vim/commit/abd468ed0fbcba391e7833feeaa7de3ced841455
Christian Brabandt <cb@256bit.org>
parents: 10140
diff changeset
57
16086
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
58 if !exists('g:no_plugin_maps') && !exists('g:no_python_maps')
35165
d0498ef60b5b ftplugin(python): E16 fix, async keyword support for define (#14751)
Christian Brabandt <cb@256bit.org>
parents: 34134
diff changeset
59 execute "nnoremap <silent> <buffer> ]] :<C-U>call <SID>Python_jump('n', '". b:next_toplevel."', 'W', v:count1)<cr>"
d0498ef60b5b ftplugin(python): E16 fix, async keyword support for define (#14751)
Christian Brabandt <cb@256bit.org>
parents: 34134
diff changeset
60 execute "nnoremap <silent> <buffer> [[ :<C-U>call <SID>Python_jump('n', '". b:prev_toplevel."', 'Wb', v:count1)<cr>"
d0498ef60b5b ftplugin(python): E16 fix, async keyword support for define (#14751)
Christian Brabandt <cb@256bit.org>
parents: 34134
diff changeset
61 execute "nnoremap <silent> <buffer> ][ :<C-U>call <SID>Python_jump('n', '". b:next_endtoplevel."', 'W', v:count1, 0)<cr>"
d0498ef60b5b ftplugin(python): E16 fix, async keyword support for define (#14751)
Christian Brabandt <cb@256bit.org>
parents: 34134
diff changeset
62 execute "nnoremap <silent> <buffer> [] :<C-U>call <SID>Python_jump('n', '". b:prev_endtoplevel."', 'Wb', v:count1, 0)<cr>"
d0498ef60b5b ftplugin(python): E16 fix, async keyword support for define (#14751)
Christian Brabandt <cb@256bit.org>
parents: 34134
diff changeset
63 execute "nnoremap <silent> <buffer> ]m :<C-U>call <SID>Python_jump('n', '". b:next."', 'W', v:count1)<cr>"
d0498ef60b5b ftplugin(python): E16 fix, async keyword support for define (#14751)
Christian Brabandt <cb@256bit.org>
parents: 34134
diff changeset
64 execute "nnoremap <silent> <buffer> [m :<C-U>call <SID>Python_jump('n', '". b:prev."', 'Wb', v:count1)<cr>"
d0498ef60b5b ftplugin(python): E16 fix, async keyword support for define (#14751)
Christian Brabandt <cb@256bit.org>
parents: 34134
diff changeset
65 execute "nnoremap <silent> <buffer> ]M :<C-U>call <SID>Python_jump('n', '". b:next_end."', 'W', v:count1, 0)<cr>"
d0498ef60b5b ftplugin(python): E16 fix, async keyword support for define (#14751)
Christian Brabandt <cb@256bit.org>
parents: 34134
diff changeset
66 execute "nnoremap <silent> <buffer> [M :<C-U>call <SID>Python_jump('n', '". b:prev_end."', 'Wb', v:count1, 0)<cr>"
9407
619a98a67f67 commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents: 9286
diff changeset
67
16086
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
68 execute "onoremap <silent> <buffer> ]] :call <SID>Python_jump('o', '". b:next_toplevel."', 'W', v:count1)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
69 execute "onoremap <silent> <buffer> [[ :call <SID>Python_jump('o', '". b:prev_toplevel."', 'Wb', v:count1)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
70 execute "onoremap <silent> <buffer> ][ :call <SID>Python_jump('o', '". b:next_endtoplevel."', 'W', v:count1, 0)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
71 execute "onoremap <silent> <buffer> [] :call <SID>Python_jump('o', '". b:prev_endtoplevel."', 'Wb', v:count1, 0)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
72 execute "onoremap <silent> <buffer> ]m :call <SID>Python_jump('o', '". b:next."', 'W', v:count1)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
73 execute "onoremap <silent> <buffer> [m :call <SID>Python_jump('o', '". b:prev."', 'Wb', v:count1)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
74 execute "onoremap <silent> <buffer> ]M :call <SID>Python_jump('o', '". b:next_end."', 'W', v:count1, 0)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
75 execute "onoremap <silent> <buffer> [M :call <SID>Python_jump('o', '". b:prev_end."', 'Wb', v:count1, 0)<cr>"
10153
715d6c5707b8 commit https://github.com/vim/vim/commit/abd468ed0fbcba391e7833feeaa7de3ced841455
Christian Brabandt <cb@256bit.org>
parents: 10140
diff changeset
76
16086
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
77 execute "xnoremap <silent> <buffer> ]] :call <SID>Python_jump('x', '". b:next_toplevel."', 'W', v:count1)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
78 execute "xnoremap <silent> <buffer> [[ :call <SID>Python_jump('x', '". b:prev_toplevel."', 'Wb', v:count1)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
79 execute "xnoremap <silent> <buffer> ][ :call <SID>Python_jump('x', '". b:next_endtoplevel."', 'W', v:count1, 0)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
80 execute "xnoremap <silent> <buffer> [] :call <SID>Python_jump('x', '". b:prev_endtoplevel."', 'Wb', v:count1, 0)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
81 execute "xnoremap <silent> <buffer> ]m :call <SID>Python_jump('x', '". b:next."', 'W', v:count1)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
82 execute "xnoremap <silent> <buffer> [m :call <SID>Python_jump('x', '". b:prev."', 'Wb', v:count1)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
83 execute "xnoremap <silent> <buffer> ]M :call <SID>Python_jump('x', '". b:next_end."', 'W', v:count1, 0)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
84 execute "xnoremap <silent> <buffer> [M :call <SID>Python_jump('x', '". b:prev_end."', 'Wb', v:count1, 0)<cr>"
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
85 endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86
5510
d7d7bac1a163 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5400
diff changeset
87 if !exists('*<SID>Python_jump')
13735
a62eeee5f116 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 13482
diff changeset
88 fun! <SID>Python_jump(mode, motion, flags, count, ...) range
12756
3b26420fc639 Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents: 10261
diff changeset
89 let l:startofline = (a:0 >= 1) ? a:1 : 1
3b26420fc639 Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents: 10261
diff changeset
90
9407
619a98a67f67 commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents: 9286
diff changeset
91 if a:mode == 'x'
619a98a67f67 commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents: 9286
diff changeset
92 normal! gv
619a98a67f67 commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents: 9286
diff changeset
93 endif
619a98a67f67 commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents: 9286
diff changeset
94
12756
3b26420fc639 Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents: 10261
diff changeset
95 if l:startofline == 1
3b26420fc639 Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents: 10261
diff changeset
96 normal! 0
3b26420fc639 Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents: 10261
diff changeset
97 endif
9407
619a98a67f67 commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents: 9286
diff changeset
98
13735
a62eeee5f116 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 13482
diff changeset
99 let cnt = a:count
5510
d7d7bac1a163 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5400
diff changeset
100 mark '
d7d7bac1a163 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5400
diff changeset
101 while cnt > 0
9407
619a98a67f67 commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents: 9286
diff changeset
102 call search(a:motion, a:flags)
619a98a67f67 commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents: 9286
diff changeset
103 let cnt = cnt - 1
5510
d7d7bac1a163 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5400
diff changeset
104 endwhile
9407
619a98a67f67 commit https://github.com/vim/vim/commit/e18dbe865d190e74fb5d43ac8bc6ac22507d0223
Christian Brabandt <cb@256bit.org>
parents: 9286
diff changeset
105
12756
3b26420fc639 Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents: 10261
diff changeset
106 if l:startofline == 1
3b26420fc639 Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents: 10261
diff changeset
107 normal! ^
3b26420fc639 Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents: 10261
diff changeset
108 endif
5510
d7d7bac1a163 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5400
diff changeset
109 endfun
d7d7bac1a163 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5400
diff changeset
110 endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
111
5510
d7d7bac1a163 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5400
diff changeset
112 if has("browsefilter") && !exists("b:browsefilter")
34134
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 22565
diff changeset
113 let b:browsefilter = "Python Files (*.py)\t*.py\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 22565
diff changeset
114 if has("win32")
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 22565
diff changeset
115 let b:browsefilter .= "All Files (*.*)\t*\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 22565
diff changeset
116 else
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 22565
diff changeset
117 let b:browsefilter .= "All Files (*)\t*\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 22565
diff changeset
118 endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 endif
3496
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 827
diff changeset
120
10153
715d6c5707b8 commit https://github.com/vim/vim/commit/abd468ed0fbcba391e7833feeaa7de3ced841455
Christian Brabandt <cb@256bit.org>
parents: 10140
diff changeset
121 if !exists("g:python_recommended_style") || g:python_recommended_style != 0
715d6c5707b8 commit https://github.com/vim/vim/commit/abd468ed0fbcba391e7833feeaa7de3ced841455
Christian Brabandt <cb@256bit.org>
parents: 10140
diff changeset
122 " As suggested by PEP8.
22565
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
123 setlocal expandtab tabstop=4 softtabstop=4 shiftwidth=4
5400
173c9c860e42 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 3496
diff changeset
124 endif
16086
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
125
22565
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
126 " Use pydoc for keywordprg.
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
127 " Unix users preferentially get pydoc3, then pydoc2.
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
128 " Windows doesn't have a standalone pydoc executable in $PATH by default, nor
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
129 " does it have separate python2/3 executables, so Windows users just get
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
130 " whichever version corresponds to their installed Python version.
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
131 if executable('python3')
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
132 setlocal keywordprg=python3\ -m\ pydoc
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
133 elseif executable('python')
17c4178f26ea Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
134 setlocal keywordprg=python\ -m\ pydoc
5400
173c9c860e42 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 3496
diff changeset
135 endif
173c9c860e42 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 3496
diff changeset
136
16086
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
137 " Script for filetype switching to undo the local stuff we may have changed
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
138 let b:undo_ftplugin = 'setlocal cinkeys<'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
139 \ . '|setlocal comments<'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
140 \ . '|setlocal commentstring<'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
141 \ . '|setlocal expandtab<'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
142 \ . '|setlocal include<'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
143 \ . '|setlocal includeexpr<'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
144 \ . '|setlocal indentkeys<'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
145 \ . '|setlocal keywordprg<'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
146 \ . '|setlocal omnifunc<'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
147 \ . '|setlocal shiftwidth<'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
148 \ . '|setlocal softtabstop<'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
149 \ . '|setlocal suffixesadd<'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
150 \ . '|setlocal tabstop<'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
151 \ . '|silent! nunmap <buffer> [M'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
152 \ . '|silent! nunmap <buffer> [['
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
153 \ . '|silent! nunmap <buffer> []'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
154 \ . '|silent! nunmap <buffer> [m'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
155 \ . '|silent! nunmap <buffer> ]M'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
156 \ . '|silent! nunmap <buffer> ]['
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
157 \ . '|silent! nunmap <buffer> ]]'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
158 \ . '|silent! nunmap <buffer> ]m'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
159 \ . '|silent! ounmap <buffer> [M'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
160 \ . '|silent! ounmap <buffer> [['
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
161 \ . '|silent! ounmap <buffer> []'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
162 \ . '|silent! ounmap <buffer> [m'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
163 \ . '|silent! ounmap <buffer> ]M'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
164 \ . '|silent! ounmap <buffer> ]['
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
165 \ . '|silent! ounmap <buffer> ]]'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
166 \ . '|silent! ounmap <buffer> ]m'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
167 \ . '|silent! xunmap <buffer> [M'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
168 \ . '|silent! xunmap <buffer> [['
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
169 \ . '|silent! xunmap <buffer> []'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
170 \ . '|silent! xunmap <buffer> [m'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
171 \ . '|silent! xunmap <buffer> ]M'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
172 \ . '|silent! xunmap <buffer> ]['
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
173 \ . '|silent! xunmap <buffer> ]]'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
174 \ . '|silent! xunmap <buffer> ]m'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
175 \ . '|unlet! b:browsefilter'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
176 \ . '|unlet! b:child_match'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
177 \ . '|unlet! b:child_sub'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
178 \ . '|unlet! b:grandparent_match'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
179 \ . '|unlet! b:grandparent_sub'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
180 \ . '|unlet! b:next'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
181 \ . '|unlet! b:next_end'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
182 \ . '|unlet! b:next_endtoplevel'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
183 \ . '|unlet! b:next_toplevel'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
184 \ . '|unlet! b:parent_match'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
185 \ . '|unlet! b:parent_sub'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
186 \ . '|unlet! b:prev'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
187 \ . '|unlet! b:prev_end'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
188 \ . '|unlet! b:prev_endtoplevel'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
189 \ . '|unlet! b:prev_toplevel'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
190 \ . '|unlet! b:undo_ftplugin'
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 13735
diff changeset
191
3496
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 827
diff changeset
192 let &cpo = s:keepcpo
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 827
diff changeset
193 unlet s:keepcpo