diff options
author | rxi <rxi@users.noreply.github.com> | 2020-06-23 13:25:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 13:25:57 +0100 |
commit | 420bde4ae8b4e0633f54d809ce5ffc5b1b87f50e (patch) | |
tree | ef973dfc7edc322eb64acf0544f8bc2968998708 | |
parent | e533f0fa3ac9db5d7c4c684f00ae2d31b0f73ed7 (diff) | |
parent | f171bd5218943746963c2aba57d5753f15dfa2bc (diff) | |
download | lite-xl-plugins-420bde4ae8b4e0633f54d809ce5ffc5b1b87f50e.tar.gz lite-xl-plugins-420bde4ae8b4e0633f54d809ce5ffc5b1b87f50e.zip |
Merge pull request #64 from imolein/master
autoinsert.lua: added single quotes to autoinsert_map
-rw-r--r-- | plugins/autoinsert.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/autoinsert.lua b/plugins/autoinsert.lua index 0bf5a5a..c1e388b 100644 --- a/plugins/autoinsert.lua +++ b/plugins/autoinsert.lua @@ -11,6 +11,7 @@ config.autoinsert_map = { ["{"] = "}", ["("] = ")", ['"'] = '"', + ["'"] = "'", } |