diff options
author | Jefferson González <jgmdev@gmail.com> | 2022-05-23 00:48:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-23 00:48:47 -0400 |
commit | 21025951770df69c0fedd67b33f1f7725c22980d (patch) | |
tree | 6c6d64ce67d959d09a849670799306e9b83913e2 /plugins/indentguide.lua | |
parent | 8d1421f31b98738fb9e3112083153434d92f3786 (diff) | |
download | lite-xl-plugins-21025951770df69c0fedd67b33f1f7725c22980d.tar.gz lite-xl-plugins-21025951770df69c0fedd67b33f1f7725c22980d.zip |
Add settings gui plugin (#65)
* Appropriately merged config hashes.
* indentguide: use indent size from doc instead of config
* added settings gui plugin
* added new animation/transition settings
* overwrite ToolbarView settings command
* Introduced new button type
* Added button to open user module on General section
* settings: partially implemented keybindings
* initial support for settings.type.LIST_STRINGS
* added on_apply, prettify settings file and other fixes
* added ability to save keybinds and apply at startup
* dropped custom prettify in favor of new common.serialize support
* handle plugins enable/disable
* added priority:0
* added color theme chooser pane
* do not remove duplicated colors
* properly list all shortcuts assigned to a command
* handle multiple bindings per command
* custom drawing of colors preview
* added video preview to readme
* removed unused settings.type.LIST_NUMBERS
Diffstat (limited to 'plugins/indentguide.lua')
-rw-r--r-- | plugins/indentguide.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/indentguide.lua b/plugins/indentguide.lua index c66d825..8d78ee3 100644 --- a/plugins/indentguide.lua +++ b/plugins/indentguide.lua @@ -1,4 +1,4 @@ --- mod-version:3 --lite-xl 2.1 +--- mod-version:3 --lite-xl 2.1 local style = require "core.style" local config = require "core.config" local DocView = require "core.docview" |