Skip to content

Commit 92b5d4c

Browse files
xoloxvim-scripts
authored andcommitted
Version 0.21.5
� Document vim-misc as external dependency (needs to be installed separately from now on): https://github.com/xolox/vim-notes/commit/061c030 � Bug fix for xolox#notes#select(): https://github.com/xolox/vim-notes/commit/825b30e
1 parent f2af44d commit 92b5d4c

File tree

16 files changed

+57
-1146
lines changed

16 files changed

+57
-1146
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
doc/tags
22
misc/notes/index.pickle
3+
misc/notes/recent.txt
34
misc/notes/tags.txt
45
misc/notes/user/

README.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Easy note taking in Vim
22

3-
The notes.vim plug-in for the [Vim text editor] [vim] makes it easy to manage your notes in Vim:
3+
The vim-notes plug-in for the [Vim text editor] [vim] makes it easy to manage your notes in Vim:
44

55
* **Starting a new note:** Execute the `:Note` command to create a new buffer and load the appropriate file type and syntax
66
* You can also start a note with Vim commands like `:edit`, `:tabedit` and `:split` by starting the filename with `note:`, as in `:edit note:todo` (the part after `note:` doesn't have to be the complete note title and if it's empty a new note will be created)
@@ -19,13 +19,17 @@ The notes.vim plug-in for the [Vim text editor] [vim] makes it easy to manage yo
1919
* **Writing aids:** The included file type plug-in contains mappings for automatic curly quotes, arrows and list bullets and supports completion of note titles using Control-X Control-U and completion of tags using Control-X Control-O
2020
* **Embedded file types:** The included syntax script supports embedded highlighting using blocks marked with `{{{type … }}}` which allows you to embed highlighted code and configuration snippets in your notes
2121

22-
Here's a screen shot of the syntax mode using the [slate] [slate] color scheme:
22+
Here's a screen shot of the syntax mode using the [Slate] [slate] color scheme and the font [Monaco] [monaco]:
2323

2424
![Syntax mode screen shot](http://peterodding.com/code/vim/notes/syntax.png)
2525

2626
## Install & usage
2727

28-
Unzip the most recent [ZIP archive] [download] file inside your Vim profile directory (usually this is `~/.vim` on UNIX and `%USERPROFILE%\vimfiles` on Windows), restart Vim and execute the command `:helptags ~/.vim/doc` (use `:helptags ~\vimfiles\doc` instead on Windows). To get started execute `:Note` or `:edit note:`, this will start a new note that contains instructions on how to continue from there (and how to use the plug-in in general).
28+
*Please note that the vim-notes plug-in requires my vim-misc plug-in which is separately distributed.*
29+
30+
Unzip the most recent ZIP archives of the [vim-notes] [download-notes] and [vim-misc] [download-misc] plug-ins inside your Vim profile directory (usually this is `~/.vim` on UNIX and `%USERPROFILE%\vimfiles` on Windows), restart Vim and execute the command `:helptags ~/.vim/doc` (use `:helptags ~\vimfiles\doc` instead on Windows). To get started execute `:Note` or `:edit note:`, this will start a new note that contains instructions on how to continue from there (and how to use the plug-in in general).
31+
32+
If you prefer you can also use [Pathogen] [pathogen], [Vundle] [vundle] or a similar tool to install & update the [vim-notes] [github-notes] and [vim-misc] [github-misc] plug-ins using a local clone of the git repository.
2933

3034
## Options
3135

@@ -302,14 +306,19 @@ This software is licensed under the [MIT license] [mit].
302306

303307
[ctrlwf]: http://vimdoc.sourceforge.net/htmldoc/windows.html#CTRL-W_f
304308
[ctrlwgf]: http://vimdoc.sourceforge.net/htmldoc/windows.html#CTRL-W_gf
305-
[download]: http://peterodding.com/code/vim/downloads/notes.zip
309+
[download-misc]: http://peterodding.com/code/vim/downloads/misc.zip
310+
[download-notes]: http://peterodding.com/code/vim/downloads/notes.zip
306311
[edit]: http://vimdoc.sourceforge.net/htmldoc/editing.html#:edit
307312
[gf]: http://vimdoc.sourceforge.net/htmldoc/editing.html#gf
313+
[github-misc]: https://github.com/xolox/vim-misc
314+
[github-notes]: https://github.com/xolox/vim-notes
308315
[highlight]: http://vimdoc.sourceforge.net/htmldoc/syntax.html#:highlight
309316
[levenshtein]: http://en.wikipedia.org/wiki/Levenshtein_distance
310317
[mapleader]: http://vimdoc.sourceforge.net/htmldoc/map.html#mapleader
311318
[mit]: http://en.wikipedia.org/wiki/MIT_License
312319
[modeline]: http://vimdoc.sourceforge.net/htmldoc/options.html#modeline
320+
[monaco]: http://en.wikipedia.org/wiki/Monaco_(typeface)
321+
[pathogen]: http://www.vim.org/scripts/script.php?script_id=2332
313322
[pathogen]: http://www.vim.org/scripts/script.php?script_id=2332
314323
[python]: http://python.org/
315324
[shell]: http://www.vim.org/scripts/script.php?script_id=3123
@@ -324,4 +333,5 @@ This software is licensed under the [MIT license] [mit].
324333
[vimgrep]: http://vimdoc.sourceforge.net/htmldoc/quickfix.html#:vimgrep
325334
[vimrc]: http://vimdoc.sourceforge.net/htmldoc/starting.html#vimrc
326335
[voom]: http://www.vim.org/scripts/script.php?script_id=2657
336+
[vundle]: https://github.com/gmarik/vundle
327337
[write]: http://vimdoc.sourceforge.net/htmldoc/editing.html#:write

autoload/xolox/misc/buffer.vim

Lines changed: 0 additions & 80 deletions
This file was deleted.

autoload/xolox/misc/compat.vim

Lines changed: 0 additions & 37 deletions
This file was deleted.

autoload/xolox/misc/complete.vim

Lines changed: 0 additions & 22 deletions
This file was deleted.

autoload/xolox/misc/escape.vim

Lines changed: 0 additions & 56 deletions
This file was deleted.

autoload/xolox/misc/list.vim

Lines changed: 0 additions & 57 deletions
This file was deleted.

0 commit comments

Comments
 (0)