Commit Graph

786 Commits

Author SHA1 Message Date
cpfaff b8f267513d improves the documentation of the key mapping secion 2012-10-30 11:46:27 +01:00
cpfaff 11fb98aa9f improves english of the key mappings section 2012-10-30 11:41:15 +01:00
cpfaff 062e92d5e4 improves introduction 2012-10-30 11:26:01 +01:00
cpfaff 96148fcf1d improves english of the documentation a bit 2012-10-30 11:23:24 +01:00
Shougo Matsushita 3faba814c4 Merge branch 'master' of github.com:Shougo/neosnippet 2012-10-30 18:54:35 +09:00
Shougo Matsushita 00d2c7ed52 - Fixed neosnippet#jump() error. 2012-10-30 18:54:07 +09:00
Shougo 512c27f72e Merge pull request #74 from cpfaff/english_doc
improves the english of the second part of the documentation
2012-10-30 02:50:35 -07:00
cpfaff 0b7994aee7 improves the english of the second part of the documentation 2012-10-30 10:31:57 +01:00
Shougo c380f83bbd Merge pull request #72 from cpfaff/english_doc
English doc
2012-10-30 01:54:47 -07:00
Shougo Matsushita 19e6bb6253 - Refactored snippets files. 2012-10-30 17:53:14 +09:00
cpfaff e68f4fbcb7 Improves the english of the first documentation section 2012-10-30 09:30:30 +01:00
cpfaff 549c42d4d3 Improves english documentation a bit 2012-10-30 09:25:43 +01:00
Shougo a4c2f3d376 Merge pull request #71 from NagatoPain/fix_invalid_syntax
fix invalid syntax
2012-10-29 22:31:45 -07:00
NagatoPain d7810aeada fix invalid syntax 2012-10-30 12:27:51 +08:00
Shougo Matsushita efb7202876 - Improved default snippet files. 2012-10-30 12:06:31 +09:00
Shougo Matsushita 6a2c34bdaa - Improved FAQ section. 2012-10-30 11:45:29 +09:00
Shougo Matsushita ad5e0067e1 - Added <Plug>(neosnippet_register_oneshot_snippet). 2012-10-30 11:27:59 +09:00
Shougo Matsushita c8a337b6aa - Added indent option. 2012-10-30 10:58:26 +09:00
Shougo Matsushita d93a1a1e92 - Added FAQ section. 2012-10-30 10:51:33 +09:00
Shougo Matsushita 6ec0f14a87 - Improved targetted placeholder behavior. 2012-10-30 10:47:52 +09:00
Shougo Matsushita bee141782a Merge branch 'master' of github.com:Shougo/neosnippet 2012-10-30 09:13:03 +09:00
Shougo Matsushita d1831744d6 - Fixed expand snippet. 2012-10-30 09:12:48 +09:00
Shougo 8c2eed558e Merge pull request #70 from docwhat/readme
Added initial README
2012-10-29 16:07:31 -07:00
Shougo Matsushita dc4ad41100 - Improved targetted placeholder. 2012-10-30 08:03:53 +09:00
Christian Höltje d10ee801d6 Added initial README
This is a simple readme which should give people at
least a starting point for installation and configuration.
2012-10-29 19:00:04 -04:00
Shougo Matsushita 617a858341 - Improved documentation. 2012-10-30 07:45:46 +09:00
Shougo Matsushita efecca4fb8 - Implemented target placeholder. 2012-10-30 07:38:37 +09:00
Shougo Matsushita be5b8e37cd - Fixed for alias. 2012-10-30 05:18:59 +09:00
Shougo Matsushita ff281e5171 - Improved python snippets. 2012-10-30 05:11:23 +09:00
Shougo Matsushita 9e96a69061 - Implemented commented placeholder. 2012-10-30 05:09:50 +09:00
Shougo Matsushita c1cfe686ad - Added get_selected_text(). 2012-10-29 19:27:18 +09:00
Shougo Matsushita d4870c9987 - Improved clear select mode mappings. 2012-10-29 12:28:33 +09:00
Shougo Matsushita e1bb6d58ef - Improved syntax. 2012-10-29 11:32:38 +09:00
Shougo Matsushita d30ce7fe79 - Improved syntax of markers. 2012-10-29 11:27:22 +09:00
Shougo Matsushita de453e5a16 - Improved parse of snippets file. 2012-10-29 11:22:37 +09:00
Shougo Matsushita 2b5eb202f7 - Improved filter behavior. 2012-10-28 19:15:58 +09:00
Shougo Matsushita 6f2f181cb3 - Improved expand behavior. 2012-10-28 18:58:55 +09:00
Shougo 77375e8fd3 Merge pull request #61 from vinsonchuong/refactor-folding-fix
Simplified fix not working for some snippets
2012-10-28 02:54:47 -07:00
Shougo d74196b4fd Merge pull request #63 from vinsonchuong/fix-conceal-autocmd
Fix autocmd not firing for initial buffer
2012-10-28 02:53:28 -07:00
Shougo Matsushita a0cae1175e - Improved ruby snippets. 2012-10-28 18:49:19 +09:00
Shougo Matsushita f1a6401519 - Improved snipMate compatibility. 2012-10-28 18:47:26 +09:00
Christian Höltje d305dde1cc - Merged. 2012-10-28 18:35:14 +09:00
Christian Höltje 2fde49493b Add compatability for SnipMate-style `abbr`
SnipMate-style snippets set the `abbr` (they call it `name`) via
the snippet line.  Note: If both styles are used, then neosnippet
style wins.

Example of SnipMate-style:

    snippet   if   if ... end
    if ${1:condition}
      ${2}
    end

Example of neosnippet-style:

    snippet   if
    abbr      if ... end
    if ${1:condition}
      ${2}
    end
2012-10-28 18:30:51 +09:00
Vinson Chuong 5470da2546 Fix autocmd not firing for initial buffer 2012-10-27 19:07:17 -07:00
Vinson Chuong 870db7dfca Simplified fix not working for some snippets 2012-10-27 17:10:09 -07:00
Shougo Matsushita 0a3edfa3a0 - Improved a bit. 2012-10-27 18:06:46 +09:00
Shougo Matsushita b955d17e5e - Improved g:neosnippet#disable_select_mode_mappings behavior. 2012-10-27 18:04:53 +09:00
Shougo Matsushita e9db76f71f - Fixed for :SnippetEdit. 2012-10-27 12:20:00 +09:00
Shougo dcef469919 Merge pull request #57 from vinsonchuong/refactor-folding-fix
Simplify folding fix
2012-10-25 22:59:58 -07:00
Vinson Chuong aa0bc464fa Simplify folding fix 2012-10-25 22:43:28 -07:00