aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrxi <rxi@users.noreply.github.com>2020-06-23 13:25:57 +0100
committerGitHub <noreply@github.com>2020-06-23 13:25:57 +0100
commit420bde4ae8b4e0633f54d809ce5ffc5b1b87f50e (patch)
treeef973dfc7edc322eb64acf0544f8bc2968998708
parente533f0fa3ac9db5d7c4c684f00ae2d31b0f73ed7 (diff)
parentf171bd5218943746963c2aba57d5753f15dfa2bc (diff)
downloadlite-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.lua1
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 = {
["{"] = "}",
["("] = ")",
['"'] = '"',
+ ["'"] = "'",
}