aboutsummaryrefslogtreecommitdiff
path: root/autoload
Commit message (Collapse)AuthorAge
* postfix must be overwritable by user's templateYasuhiro Matsumoto2020-03-06
|
* Fix vint errorsYasuhiro Matsumoto2020-03-06
|
* Add fz sourceYasuhiro Matsumoto2020-02-12
|
* Add fzf sourceYasuhiro Matsumoto2020-02-12
|
* Add jsonYasuhiro Matsumoto2020-01-26
|
* Add clojureYasuhiro Matsumoto2020-01-26
|
* Use default for _name_Yasuhiro Matsumoto2020-01-26
|
* Fix expanding {{_cursor_}} does not work in insertmodemityu2020-01-21
|
* Squashed commit of the following:mityu2020-01-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | commit e972aa09aa158189c36913b62a4344cb3ca78c76 Merge: 0925277 4d00bdb Author: mattn <mattn.jp@gmail.com> Date: Tue Jan 14 18:26:58 2020 +0900 Merge pull request #39 from sgur/fix/error_on_normal Prefix noautocmd to "normal!" commands which trigger TextChange events. commit 4d00bdb4b7e60e0466d3a6e5791779f8ebe7d8fc Author: sgur <sgurrr@gmail.com> Date: Tue Jan 14 16:28:05 2020 +0900 Prefix noautocmd to normal! commands which trigger TextChange events. Fix #38 commit 0925277597e5db0e4b601aecc290b79db239b174 Author: Yasuhiro Matsumoto <mattn.jp@gmail.com> Date: Fri Dec 27 15:59:12 2019 +0900 Add snippets for typescript commit 20a19f48f9db3a32c3ebc0352fe094bd9816cd38 Author: Yasuhiro Matsumoto <mattn.jp@gmail.com> Date: Wed Dec 25 17:04:37 2019 +0900 Add base-main.scala commit e746cdf5c5dc8d3849b7e2517c4a24e57d931dd3 Author: Yasuhiro Matsumoto <mattn.jp@gmail.com> Date: Sat Dec 21 23:11:46 2019 +0900 Strictly commit c512546f04de8a185d40292dd0860d81d1896130 Merge: 859adef 47c0d77 Author: mattn <mattn.jp@gmail.com> Date: Thu Nov 14 19:01:33 2019 +0900 Merge pull request #37 from anekos/fix/dont-kill-my-register Avoid updating register commit 47c0d77f6cad63ea17b0fa6c87d585768c35cf89 Author: anekos <anekos@snca.net> Date: Thu Nov 14 18:46:36 2019 +0900 Avoid updating register commit 859adef1e67cc0fb1a99e4e3f3d58360f5464f02 Merge: 4e1b1a3 5e752a5 Author: mattn <mattn.jp@gmail.com> Date: Tue Oct 8 16:00:33 2019 +0900 Merge pull request #36 from wallysslima/master replace deprecated MANTAINER with LABEL in Dockerfile commit 4e1b1a36a95e899ad4415d7b4373e2c0e3ff05af Author: Yasuhiro Matsumoto <mattn.jp@gmail.com> Date: Sun Oct 6 21:29:01 2019 +0900 Add build.gradle for kotlin commit 5e752a5bf606ec50fffca5a2269ade32a22c1fe4 Author: Wallyss Lima <wallysslima@gmail.com> Date: Thu Oct 3 11:58:22 2019 -0300 replace deprecated MANTAINER with LABEL in Dockerfile commit 51a9cec47ad815451a8cdf1408a50ea525111442 Author: Yasuhiro Matsumoto <mattn.jp@gmail.com> Date: Wed Oct 2 11:26:01 2019 +0900 Fix feedkeys commit 807562bbebb7b7c033823ebd3b13b32a814d4f7f Author: Yasuhiro Matsumoto <mattn.jp@gmail.com> Date: Wed Oct 2 10:41:10 2019 +0900 Use flag n for feedkeys commit 7db10f422f61819a1a8f45d0dade1de17ecab2b6 Merge: 31de6a5 39cf197 Author: Yasuhiro Matsumoto <mattn.jp@gmail.com> Date: Wed Oct 2 10:06:35 2019 +0900 Merge branch 'master' of https://github.com/mattn/sonictemplate-vim commit 31de6a5e48b65dface121e654e40e06de6bf364a Author: Yasuhiro Matsumoto <mattn.jp@gmail.com> Date: Wed Oct 2 09:25:34 2019 +0900 Update postfix completion commit 39cf197d0e46eeff8f905063ba5030e8690169b3 Merge: df88ac3 2f49560 Author: mattn <mattn.jp@gmail.com> Date: Thu Sep 26 14:28:34 2019 +0900 Merge pull request #34 from hiroebe/fix-shiftwidth Use shiftwidth() instead of &shiftwidth commit 2f49560db7699d7988a817a4f69f8b684cecdfee Author: hiroebe <hiro.ebe.albirex12@gmail.com> Date: Mon Sep 16 17:17:12 2019 +0900 Use shiftwidth() instead of &shiftwidth commit df88ac36ed24e68d7d9d7e4d9aa471575d3c79bd Author: mattn <mattn.jp@gmail.com> Date: Wed Aug 14 15:01:05 2019 +0900 Create FUNDING.yml commit c1ec4cdaf215f22c86040584cb1eef2b3ac2b741 Author: Yasuhiro Matsumoto <mattn.jp@gmail.com> Date: Fri Jul 12 22:29:15 2019 +0900 Fix socket server
* Update the method of removeing {{_cursor_}}mityu2019-06-09
| | | | feedkeys() does only adding characters to the queue of key inputs.
* Add more escapeJagua2019-03-15
| | | | | | | | | | | | | | | | | | | | | | | | I believe that escape() is necessary at 3rd argument of substitute(). example: ```go "%v",&P{}.log ``` and type `<C-y><C-b>` actual: ```go log.Println("%v",{{$1}}P{}) ``` expect: ```go log.Println("%v",&P{}) ```
* Merge branch 'master' into fix-postfix-escapeJagua2019-03-15
|\
| * Fix command-line completion returns templates of VimScript on command-line ↵mityu2019-03-10
| | | | | | | | | | | | | | window. - Add s:get_raw_filetype() to check whether being command-line window. - Replace '&ft' with s:get_raw_filetype() automatically.
* | Fix missing backslash escapeJagua2019-03-07
|/ | | | | | | | | | | | | | | | | | | | | When writing in Go, type the following code, ```go "AA\nBB".log ``` and hits `<C-y><C-b>`, then got the following result. ```go log.Println("AA BB") ``` but want this. ```go log.Println("AA\nBB") ```
* Fix command completion on command-line window.mityu2019-02-25
|
* dittoYasuhiro Matsumoto2016-07-04
|
* save/restore indentexprYasuhiro Matsumoto2016-07-04
|
* add postfix for goYasuhiro Matsumoto2016-07-04
|
* postfixYasuhiro Matsumoto2016-07-04
|
* renameYasuhiro Matsumoto2016-07-01
|
* replace tabsYasuhiro Matsumoto2016-07-01
|
* fix patternYasuhiro Matsumoto2016-07-01
|
* pattern inputYasuhiro Matsumoto2016-07-01
|
* Fix for &noet && &sw == 0 && &ts != &swsgur2016-03-11
| | | | Check &sw!=0 for tab expantion
* Support linuxJagua2016-02-05
|
* package name generatorYasuhiro Matsumoto2015-10-02
|
* java package nameYasuhiro Matsumoto2015-10-02
|
* Fix removing _define_mattn2014-10-30
|
* Don't expand _ directory if &ft != ''mattn2014-09-03
|
* Fix expanding file- prefixmattn2014-09-03
|
* s/sonictemplate_vars/sonictemplate_vim_vars/gmattn2014-09-03
|
* Possible to separate default valuesmattn2014-09-03
|
* Add g:sonictemplate_vars variable to override the value of _input_mattn2014-09-03
|
* file- prefixmattn2014-08-01
|
* Sort filesmattn2013-09-03
|
* Removed debug codemattn2013-08-08
|
* Insert templates for cpp.doxygen like filetypes.mattn2013-07-05
|
* Allow underscore for filter namemattn2013-05-16
|
* Allow dash for filtermattn2013-05-16
|
* fixed the logic to get candidatespekepeke2013-05-13
|
* delete debug message ...kmnk2013-05-09
|
* add file kind to parentskmnk2013-05-09
|
* put a high priority on pre defined templatekmnk2013-05-09
|
* modifykmnk2013-05-09
|
* source and kind for unitekmnk2013-05-09
|
* Regexp filtermattn2013-05-09
|
* Dynamic context filetypemattn2013-05-09
|
* Guess templatemattn2013-05-09
|
* Store variables for each filetypesmattn2013-05-08
|
* No need to delete linemattn2013-05-08
|