improve readme - snip - simple and native snippet expansion for vim
HTML git clone git://kroovy.de/snip
DIR Log
DIR Files
DIR Refs
DIR README
---
DIR commit fab34e8f4c4963cc3b83637da61e30074c8c2beb
DIR parent 3cf5f0c7809f500c3315e63753e2efaf55ae44cf
HTML Author: kroovy <me@kroovy.de>
Date: Sun, 21 Jun 2026 12:06:59 +0200
improve readme
Diffstat:
A README | 21 +++++++++++++++++++++
D README.txt | 18 ------------------
2 files changed, 21 insertions(+), 18 deletions(-)
---
DIR diff --git a/README b/README
@@ -0,0 +1,21 @@
+This is somewhat of a hack, to the SnipMate plugin.
+Offers the abiity to insert preconfigured text snippets
+when typing a keyword in normal mode (not insert mode!).
+
+
+For example you type:
+
+ ,for
+
+...and vim instantly expands it to:
+
+ for (int i=0; i < 10; i++) {
+ /* body */
+ }
+
+For each snipped you wanna use you need a line in your
+~/.vimrc:
+
+ nnoremap ,for :read $HOME/.vim/snip/for<CR>
+
+Note: As you can see this uses the (pseudo) prefix: ','
DIR diff --git a/README.txt b/README.txt
@@ -1,18 +0,0 @@
-This is somewhat of a hack, to the SnipMate plugin.
-Offers the abiity to insert preconfigured text snippets
-when typing a keyword in normal mode (not insert mode!).
-
-For example you type:
-
- ,for
-
-...and vim instantly expands it to:
-
- for (int i=0; i < 10; i++) {
- /* body */
- }
-
-For each snipped you wanna use you need a line in your
-~/.vimrc:
-
- nnoremap ,for :read $HOME/.vim/vim-skeletons/for.snippet<CR>