Mercurial > vim
annotate runtime/ftplugin/clojure.vim @ 17411:9c4ddc78df74 v8.1.1704
patch 8.1.1704: C-R C-W does not work after C-G when using 'incsearch'
commit https://github.com/vim/vim/commit/69a5b867940d25f68a782de5c1165d65b51fcafa
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jul 16 21:38:51 2019 +0200
patch 8.1.1704: C-R C-W does not work after C-G when using 'incsearch'
Problem: C-R C-W does not work after C-G when using 'incsearch'.
Solution: Put cursor at end of the match. (Yasuhiro Matsumoto, closes https://github.com/vim/vim/issues/4664)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 16 Jul 2019 21:45:05 +0200 |
parents | 9f7bcc2c3b97 |
children | 5b37a0bf7e3a |
rev | line source |
---|---|
4098 | 1 " Vim filetype plugin file |
9644
9f7bcc2c3b97
commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
2 " Language: Clojure |
9f7bcc2c3b97
commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
3 " Author: Meikel Brandmeyer <mb@kotka.de> |
4098 | 4 " |
9644
9f7bcc2c3b97
commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
5 " Maintainer: Sung Pae <self@sungpae.com> |
9f7bcc2c3b97
commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
6 " URL: https://github.com/guns/vim-clojure-static |
9f7bcc2c3b97
commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
7 " License: Same as Vim |
9f7bcc2c3b97
commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
8 " Last Change: 18 July 2016 |
4098 | 9 |
10 if exists("b:did_ftplugin") | |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
11 finish |
4098 | 12 endif |
13 let b:did_ftplugin = 1 | |
14 | |
15 let s:cpo_save = &cpo | |
16 set cpo&vim | |
17 | |
5734 | 18 let b:undo_ftplugin = 'setlocal iskeyword< define< formatoptions< comments< commentstring< lispwords<' |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
19 |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
20 setlocal iskeyword+=?,-,*,!,+,/,=,<,>,.,:,$ |
4098 | 21 |
22 " There will be false positives, but this is better than missing the whole set | |
23 " of user-defined def* definitions. | |
24 setlocal define=\\v[(/]def(ault)@!\\S* | |
25 | |
5763 | 26 " Remove 't' from 'formatoptions' to avoid auto-wrapping code. |
27 setlocal formatoptions-=t | |
4098 | 28 |
29 " Lisp comments are routinely nested (e.g. ;;; SECTION HEADING) | |
30 setlocal comments=n:; | |
31 setlocal commentstring=;\ %s | |
32 | |
5734 | 33 " Specially indented symbols from clojure.core and clojure.test. |
34 " | |
35 " Clojure symbols are indented in the defn style when they: | |
36 " | |
37 " * Define vars and anonymous functions | |
38 " * Create new lexical scopes or scopes with altered environments | |
39 " * Create conditional branches from a predicate function or value | |
40 " | |
41 " The arglists for these functions are generally in the form of [x & body]; | |
42 " Functions that accept a flat list of forms do not treat the first argument | |
43 " specially and hence are not indented specially. | |
44 " | |
5763 | 45 " -*- LISPWORDS -*- |
9644
9f7bcc2c3b97
commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
46 " Generated from https://github.com/guns/vim-clojure-static/blob/vim-release-011/clj/src/vim_clojure_static/generate.clj |
5763 | 47 setlocal lispwords=as->,binding,bound-fn,case,catch,cond->,cond->>,condp,def,definline,definterface,defmacro,defmethod,defmulti,defn,defn-,defonce,defprotocol,defrecord,defstruct,deftest,deftest-,deftype,doseq,dotimes,doto,extend,extend-protocol,extend-type,fn,for,if,if-let,if-not,if-some,let,letfn,locking,loop,ns,proxy,reify,set-test,testing,when,when-first,when-let,when-not,when-some,while,with-bindings,with-in-str,with-local-vars,with-open,with-precision,with-redefs,with-redefs-fn,with-test |
5734 | 48 |
4098 | 49 " Provide insert mode completions for special forms and clojure.core. As |
50 " 'omnifunc' is set by popular Clojure REPL client plugins, we also set | |
51 " 'completefunc' so that the user has some form of completion available when | |
52 " 'omnifunc' is set and no REPL connection exists. | |
53 for s:setting in ['omnifunc', 'completefunc'] | |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
54 if exists('&' . s:setting) && empty(eval('&' . s:setting)) |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
55 execute 'setlocal ' . s:setting . '=clojurecomplete#Complete' |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
56 let b:undo_ftplugin .= ' | setlocal ' . s:setting . '<' |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
57 endif |
4098 | 58 endfor |
59 | |
60 " Take all directories of the CLOJURE_SOURCE_DIRS environment variable | |
61 " and add them to the path option. | |
62 " | |
63 " This is a legacy option for VimClojure users. | |
64 if exists('$CLOJURE_SOURCE_DIRS') | |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
65 for s:dir in split($CLOJURE_SOURCE_DIRS, (has("win32") || has("win64")) ? ';' : ':') |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
66 let s:dir = fnameescape(s:dir) |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
67 " Whitespace escaping for Windows |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
68 let s:dir = substitute(s:dir, '\', '\\\\', 'g') |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
69 let s:dir = substitute(s:dir, '\ ', '\\ ', 'g') |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
70 execute "setlocal path+=" . s:dir . "/**" |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
71 endfor |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
72 let b:undo_ftplugin .= ' | setlocal path<' |
4098 | 73 endif |
74 | |
75 " Skip brackets in ignored syntax regions when using the % command | |
76 if exists('loaded_matchit') | |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
77 let b:match_words = &matchpairs |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
78 let b:match_skip = 's:comment\|string\|regex\|character' |
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
79 let b:undo_ftplugin .= ' | unlet! b:match_words b:match_skip' |
4098 | 80 endif |
81 | |
82 " Win32 can filter files in the browse dialog | |
83 if has("gui_win32") && !exists("b:browsefilter") | |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
84 let b:browsefilter = "Clojure Source Files (*.clj)\t*.clj\n" . |
9644
9f7bcc2c3b97
commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
85 \ "ClojureScript Source Files (*.cljs)\t*.cljs\n" . |
9f7bcc2c3b97
commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
86 \ "Java Source Files (*.java)\t*.java\n" . |
9f7bcc2c3b97
commit https://github.com/vim/vim/commit/6f1d9a096bf22d50c727dca73abbfb8e3ff55176
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
87 \ "All Files (*.*)\t*.*\n" |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
88 let b:undo_ftplugin .= ' | unlet! b:browsefilter' |
4098 | 89 endif |
90 | |
91 let &cpo = s:cpo_save | |
92 | |
93 unlet! s:cpo_save s:setting s:dir | |
94 | |
5362
ab1508486b12
Update runtime files. Add support for J.
Bram Moolenaar <bram@vim.org>
parents:
4098
diff
changeset
|
95 " vim:sts=8:sw=8:ts=8:noet |