Skip to content

Commit 3a2183e

Browse files
committedOct 18, 2021
Various updates to README and Vim help doc
1 parent 11cc000 commit 3a2183e

File tree

2 files changed

+92
-137
lines changed

2 files changed

+92
-137
lines changed
 

‎README.md

+51-82
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,85 @@
11
# Clojure.vim
22

3-
[Vim][] runtime files for [Clojure][]. This is a fork of [vim-clojure-static][].
3+
[Clojure][] syntax highlighting for Vim and Neovim, including:
44

5+
- [Augmentable](#syntax-options) syntax highlighting.
6+
- [Configurable](#indent-options) indentation.
7+
- Basic insert-mode completion of special forms and public vars in
8+
`clojure.core`. (Invoke with `<C-x><C-o>` or `<C-x><C-u>`.)
59

6-
## Installation
710

8-
These files ship with Vim version 7.3.803 and later and are periodically
9-
merged into the official Vim repository.
11+
## Installation
1012

11-
If you are running an old version of Vim or if you would like to keep up with
12-
the latest changes, you can install this repository as you would any other Vim
13-
plugin.
13+
These files are included in both Vim and Neovim. However if you would like the
14+
latest changes just install this repository like any other plugin.
1415

15-
Make sure that the following options are set in your vimrc so that all
16-
features are enabled:
16+
Make sure that the following options are set in your vimrc so that all features
17+
are enabled:
1718

1819
```vim
1920
syntax on
2021
filetype plugin indent on
2122
```
2223

23-
## Features
24-
25-
* [Augmentable](#syntax-options) syntax highlighting for Clojure and
26-
ClojureScript buffers.
2724

28-
* [Configurable](#indent-options) Clojure-specific indentation.
25+
## Configuration
2926

30-
* Basic insert mode completion for special forms and public vars in
31-
`clojure.core`.
27+
### Folding
3228

33-
This is bound to both the `'omnifunc'` and `'completefunc'` options, which
34-
can be invoked with the insert mode mappings `<C-X><C-O>` and `<C-X><C-U>`
35-
respectively.
29+
Setting `g:clojure_fold` to `1` will enable the folding of Clojure code. Any
30+
list, vector or map that extends over more than one line can be folded using
31+
the standard Vim fold commands.
3632

33+
(Note that this option will not work with scripts that redefine the bracket
34+
regions, such as rainbow parenphesis plugins.)
3735

38-
## Configuration
3936

40-
### Syntax Options
37+
### Syntax options
4138

42-
Syntax highlighting for public vars from `clojure.core` is provided by
43-
default, but any symbol can be matched and highlighted by adding it to the
44-
`g:clojure_syntax_keywords` or `b:clojure_syntax_keywords` variables:
39+
Syntax highlighting of public vars in `clojure.core` is provided by default,
40+
but additional symbols can be highlighted by adding them to the
41+
`g:clojure_syntax_keywords` variable.
4542

4643
```vim
4744
let g:clojure_syntax_keywords = {
48-
\ 'clojureMacro': ["defproject", "defcustom"],
49-
\ 'clojureFunc': ["string/join", "string/replace"]
45+
\ 'clojureMacro': ["defproject", "defcustom"],
46+
\ 'clojureFunc': ["string/join", "string/replace"]
5047
\ }
5148
```
5249

53-
See `s:clojure_syntax_keywords` in the [syntax script](syntax/clojure.vim) for
54-
a complete example.
50+
(See `s:clojure_syntax_keywords` in the [syntax script](syntax/clojure.vim) for
51+
a complete example.)
5552

56-
The global version of this variable is intended for users that always wish
57-
to have a certain set of symbols highlighted in a certain way, while the
58-
buffer-local version is intended for plugin authors who wish to highlight
59-
symbols dynamically.
53+
There is also a buffer-local variant of this variable (`b:clojure_syntax_keywords`)
54+
that is intended for use by plugin authors to highlight symbols dynamically.
6055

61-
If the buffer flag `b:clojure_syntax_without_core_keywords` is set, vars from
62-
`clojure.core` are not highlighted by default. This is useful for highlighting
63-
namespaces that have set `(:refer-clojure :only [])`.
56+
By setting `b:clojure_syntax_without_core_keywords`, vars from `clojure.core`
57+
will not be highlighted by default. This is useful for namespaces that have
58+
set `(:refer-clojure :only [])`.
6459

65-
[`vim-clojure-highlight`](https://github.com/guns/vim-clojure-highlight) uses
66-
these variables to highlight extra vars when connected to a REPL.
6760

68-
### Indent Options
61+
### Indent options
6962

7063
Clojure indentation differs somewhat from traditional Lisps, due in part to
7164
the use of square and curly brackets, and otherwise by community convention.
7265
These conventions are not universally followed, so the Clojure indent script
73-
offers a few configurable options, listed below.
66+
offers a few configuration options.
67+
68+
(If the current Vim does not include `searchpairpos()`, the indent script falls
69+
back to normal `'lisp'` indenting, and the following options are ignored.)
7470

75-
If the current vim does not include searchpairpos(), the indent script falls
76-
back to normal `'lisp'` indenting, and the following options are ignored.
7771

7872
#### `g:clojure_maxlines`
7973

80-
Set maximum scan distance of searchpairpos(). Larger values trade performance
81-
for correctness when dealing with very long forms. A value of 0 will scan
82-
without limits.
74+
Sets maximum scan distance of `searchpairpos()`. Larger values trade
75+
performance for correctness when dealing with very long forms. A value of
76+
0 will scan without limits. The default is 300.
8377

84-
```vim
85-
" Default
86-
let g:clojure_maxlines = 300
87-
```
8878

8979
#### `g:clojure_fuzzy_indent`, `g:clojure_fuzzy_indent_patterns`, `g:clojure_fuzzy_indent_blacklist`
9080

9181
The `'lispwords'` option is a list of comma-separated words that mark special
92-
forms whose subforms must be indented with two spaces.
82+
forms whose subforms should be indented with two spaces.
9383

9484
For example:
9585

@@ -109,15 +99,11 @@ the fuzzy indent feature:
10999
let g:clojure_fuzzy_indent = 1
110100
let g:clojure_fuzzy_indent_patterns = ['^with', '^def', '^let']
111101
let g:clojure_fuzzy_indent_blacklist = ['-fn$', '\v^with-%(meta|out-str|loading-context)$']
112-
113-
" Legacy comma-delimited string version; the list format above is
114-
" recommended. Note that patterns are implicitly anchored with ^ and $.
115-
let g:clojure_fuzzy_indent_patterns = 'with.*,def.*,let.*'
116102
```
117103

118104
`g:clojure_fuzzy_indent_patterns` and `g:clojure_fuzzy_indent_blacklist` are
119105
lists of patterns that will be matched against the unqualified symbol at the
120-
head of a list. This means that a pattern like `"^foo"` will match all these
106+
head of a list. This means that a pattern like `"^foo"` will match all these
121107
candidates: `foobar`, `my.ns/foobar`, and `#'foobar`.
122108

123109
Each candidate word is tested for special treatment in this order:
@@ -127,10 +113,11 @@ Each candidate word is tested for special treatment in this order:
127113
3. Return true if word matches a pattern in `g:clojure_fuzzy_indent_patterns`
128114
4. Return false and indent normally otherwise
129115

116+
130117
#### `g:clojure_special_indent_words`
131118

132-
Some forms in Clojure are indented so that every subform is indented only
133-
two spaces, regardless of `'lispwords'`. If you have a custom construct that
119+
Some forms in Clojure are indented such that every subform is indented by only
120+
two spaces, regardless of `'lispwords'`. If you have a custom construct that
134121
should be indented in this idiosyncratic fashion, you can add your symbols to
135122
the default list below.
136123

@@ -139,9 +126,10 @@ the default list below.
139126
let g:clojure_special_indent_words = 'deftype,defrecord,reify,proxy,extend-type,extend-protocol,letfn'
140127
```
141128

129+
142130
#### `g:clojure_align_multiline_strings`
143131

144-
Align subsequent lines in multiline strings to the column after the opening
132+
Align subsequent lines in multi-line strings to the column after the opening
145133
quote, instead of the same column.
146134

147135
For example:
@@ -160,12 +148,6 @@ For example:
160148
nisi ut aliquip ex ea commodo consequat.")
161149
```
162150

163-
This option is off by default.
164-
165-
```vim
166-
" Default
167-
let g:clojure_align_multiline_strings = 0
168-
```
169151

170152
#### `g:clojure_align_subforms`
171153

@@ -179,30 +161,18 @@ two spaces relative to the opening paren:
179161
baz)
180162
```
181163

182-
Setting this option changes this behavior so that all subforms are aligned to
183-
the same column, emulating the default behavior of clojure-mode.el:
164+
Setting this option to `1` changes this behaviour so that all subforms are
165+
aligned to the same column, emulating the default behaviour of
166+
[clojure-mode.el](https://github.com/clojure-emacs/clojure-mode):
184167

185168
```clojure
186169
(foo
187170
bar
188171
baz)
189172
```
190173

191-
This option is off by default.
192-
193-
```vim
194-
" Default
195-
let g:clojure_align_subforms = 0
196-
```
197-
198-
199-
## Want to improve your Clojure development set up?
200-
201-
Be sure to check out our list of [suggested Vim plugins in the
202-
Wiki](https://github.com/clojure-vim/clojure.vim/wiki/Plugins).
203-
204174

205-
## Contribute!
175+
## Contribute
206176

207177
Pull requests are welcome! Make sure to read the
208178
[`CONTRIBUTING.md`](CONTRIBUTING.md) for useful information.
@@ -212,8 +182,8 @@ Pull requests are welcome! Make sure to read the
212182

213183
[Clojure.vim][] is a continuation of [vim-clojure-static][].
214184
_Vim-clojure-static_ was created by [Sung Pae](https://github.com/guns). The
215-
original copies of the packaged runtime files came from [Meikel
216-
Brandmeyer](http://kotka.de/)'s [VimClojure][] project with permission.
185+
original copies of the packaged runtime files came from
186+
[Meikel Brandmeyer](http://kotka.de/)'s [VimClojure][] project with permission.
217187

218188
Thanks to [Tim Pope](https://github.com/tpope/) for advice in
219189
[#vim](https://www.vi-improved.org/).
@@ -236,7 +206,6 @@ for more details.
236206

237207
<!-- Links -->
238208

239-
[vim]: https://www.vim.org
240209
[clojure.vim]: https://github.com/clojure-vim/clojure.vim
241210
[vim-clojure-static]: https://github.com/guns/vim-clojure-static
242211
[vimclojure]: https://www.vim.org/scripts/script.php?script_id=2501

‎doc/clojure.txt

+41-55
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,33 @@
22

33
INTRODUCTION *clojure-introduction*
44

5-
Meikel Brandmeyer's excellent Clojure runtime files. Includes syntax, indent,
6-
ftdetect, and ftplugin scripts.
5+
Clojure runtime files for Vim.
6+
77

88
CLOJURE *ft-clojure-indent* *clojure-indent*
99

1010
Clojure indentation differs somewhat from traditional Lisps, due in part to
1111
the use of square and curly brackets, and otherwise by community convention.
1212
These conventions are not universally followed, so the Clojure indent script
13-
offers a few configurable options, listed below.
13+
offers a few configuration options.
14+
15+
(If the current Vim does not include |searchpairpos()|, the indent script falls
16+
back to normal 'lisp' indenting, and the following options are ignored.)
1417

15-
If the current vim does not include searchpairpos(), the indent script falls
16-
back to normal 'lisp' indenting, and the following options are ignored.
1718

1819
*g:clojure_maxlines*
1920

20-
Set maximum scan distance of searchpairpos(). Larger values trade performance
21-
for correctness when dealing with very long forms. A value of 0 will scan
22-
without limits.
23-
>
24-
" Default
25-
let g:clojure_maxlines = 300
26-
<
21+
Sets maximum scan distance of `searchpairpos()`. Larger values trade
22+
performance for correctness when dealing with very long forms. A value of
23+
0 will scan without limits. The default is 300.
24+
25+
2726
*g:clojure_fuzzy_indent*
2827
*g:clojure_fuzzy_indent_patterns*
2928
*g:clojure_fuzzy_indent_blacklist*
3029

3130
The 'lispwords' option is a list of comma-separated words that mark special
32-
forms whose subforms must be indented with two spaces.
31+
forms whose subforms should be indented with two spaces.
3332

3433
For example:
3534
>
@@ -47,15 +46,11 @@ the fuzzy indent feature:
4746
let g:clojure_fuzzy_indent_patterns = ['^with', '^def', '^let']
4847
let g:clojure_fuzzy_indent_blacklist =
4948
\ ['-fn$', '\v^with-%(meta|out-str|loading-context)$']
50-
51-
" Legacy comma-delimited string version; the list format above is
52-
" recommended. Note that patterns are implicitly anchored with ^ and $
53-
let g:clojure_fuzzy_indent_patterns = 'with.*,def.*,let.*'
5449
<
5550
|g:clojure_fuzzy_indent_patterns| and |g:clojure_fuzzy_indent_blacklist| are
56-
|Lists| of patterns that will be matched against the unquoted, unqualified
57-
symbol at the head of a list. This means that a pattern like "^foo" will match
58-
all these candidates: "foobar", "my.ns/foobar", and "#'foobar".
51+
lists of patterns that will be matched against the unqualified symbol at the
52+
head of a list. This means that a pattern like `"^foo"` will match all these
53+
candidates: `foobar`, `my.ns/foobar`, and `#'foobar`.
5954

6055
Each candidate word is tested for special treatment in this order:
6156

@@ -66,20 +61,22 @@ Each candidate word is tested for special treatment in this order:
6661
|g:clojure_fuzzy_indent_patterns|
6762
4. Return false and indent normally otherwise
6863

64+
6965
*g:clojure_special_indent_words*
7066

71-
Some forms in Clojure are indented so that every subform is indented only two
72-
spaces, regardless of 'lispwords'. If you have a custom construct that should
73-
be indented in this idiosyncratic fashion, you can add your symbols to the
74-
default list below.
67+
Some forms in Clojure are indented such that every subform is indented by only
68+
two spaces, regardless of 'lispwords'. If you have a custom construct that
69+
should be indented in this idiosyncratic fashion, you can add your symbols to
70+
the default list below.
7571
>
7672
" Default
7773
let g:clojure_special_indent_words =
7874
\ 'deftype,defrecord,reify,proxy,extend-type,extend-protocol,letfn'
7975
<
76+
8077
*g:clojure_align_multiline_strings*
8178

82-
Align subsequent lines in multiline strings to the column after the opening
79+
Align subsequent lines in multi-line strings to the column after the opening
8380
quote, instead of the same column.
8481

8582
For example:
@@ -96,11 +93,7 @@ For example:
9693
enim ad minim veniam, quis nostrud exercitation ullamco laboris
9794
nisi ut aliquip ex ea commodo consequat.")
9895
<
99-
This option is off by default.
100-
>
101-
" Default
102-
let g:clojure_align_multiline_strings = 0
103-
<
96+
10497
*g:clojure_align_subforms*
10598

10699
By default, parenthesized compound forms that look like function calls and
@@ -111,48 +104,41 @@ two spaces relative to the opening paren:
111104
bar
112105
baz)
113106
<
114-
Setting this option changes this behavior so that all subforms are aligned to
115-
the same column, emulating the default behavior of clojure-mode.el:
107+
Setting this option to `1` changes this behaviour so that all subforms are
108+
aligned to the same column, emulating the default behaviour of
109+
clojure-mode.el:
116110
>
117111
(foo
118112
bar
119113
baz)
120114
<
121-
This option is off by default.
122-
>
123-
" Default
124-
let g:clojure_align_subforms = 0
125-
<
126115

127116
CLOJURE *ft-clojure-syntax*
128117

129-
The default syntax groups can be augmented through the
130-
*g:clojure_syntax_keywords* and *b:clojure_syntax_keywords* variables. The
131-
value should be a |Dictionary| of syntax group names to a |List| of custom
132-
identifiers:
118+
Syntax highlighting of public vars in "clojure.core" is provided by default,
119+
but additional symbols can be highlighted by adding them to the
120+
*g:clojure_syntax_keywords* variable. The value should be a |Dictionary| of
121+
syntax group names, each containing a |List| of identifiers.
133122
>
134123
let g:clojure_syntax_keywords = {
135-
\ 'clojureMacro': ["defproject", "defcustom"],
136-
\ 'clojureFunc': ["string/join", "string/replace"]
124+
\ 'clojureMacro': ["defproject", "defcustom"],
125+
\ 'clojureFunc': ["string/join", "string/replace"]
137126
\ }
138127
<
139128
Refer to the Clojure syntax script for valid syntax group names.
140129

141-
If the |buffer-variable| *b:clojure_syntax_without_core_keywords* is set, only
142-
language constants and special forms are matched.
130+
There is also *b:clojure_syntax_keywords* which is a buffer-local variant of
131+
this variable intended for use by plugin authors to highlight symbols
132+
dynamically.
143133

144-
Setting *g:clojure_fold* enables folding Clojure code via the syntax engine.
145-
Any list, vector, or map that extends over more than one line can be folded
146-
using the standard Vim |fold-commands|.
134+
By setting the *b:clojure_syntax_without_core_keywords* variable, vars from
135+
"clojure.core" will not be highlighted by default. This is useful for
136+
namespaces that have set `(:refer-clojure :only [])`
147137

148-
Please note that this option does not work with scripts that redefine the
149-
bracket syntax regions, such as rainbow-parentheses plugins.
138+
Setting *g:clojure_fold* to `1` will enable the folding of Clojure code. Any
139+
list, vector or map that extends over more than one line can be folded using
140+
the standard Vim |fold-commands|.
150141

151-
This option is off by default.
152-
>
153-
" Default
154-
let g:clojure_fold = 0
155-
<
156142

157143
ABOUT *clojure-about*
158144

0 commit comments

Comments
 (0)
Please sign in to comment.