Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
* add language_nix
* formatting and a tweak to paths
* add string escaping
* add manifest entry
* fix search paths
* remove unnecessary string escaping
* remove entry in README
* simplify comments
|
|
* Update language_rivet.lua
* Update language_rivet.lua
|
|
|
|
|
|
- if text is selected, replace this text with eval result
- if no text is selected, eval the current line and insert the result in the next line with "= " prefix.
- Adding ctrl+alt+return default keymap
|
|
|
|
Fix for issue #174
|
|
* optimize and improve language_wren.lua
* <number>. was highlighted when it shouldn't be
* added scientific notation
* added hexadecimal and scientific notation
* fixed identifier highlight
* added a bunch of things
setters and getters are now highlighted as functions (it just looks nice)
when extending a class, the derived class' name is the one highlighted, and not the parent class' name (kinda hacky at the moment)
highlighted anything in between two pipes (|) that isn't a pipe for when making standalone functions with parameters
|
|
* properly ignore comments on declarations
* strip newlines when insert_final_newline set to false
* force match up to the end
* support unset property
* make property values case insensitive
* handle indent_size when set to tab
* handle escaped comment chars
* also lowercase property names
* support utf-8 as on spec
* apply rules to unsaved unamed/named docs
* annotation fix
* added test suite and fixes for 100% pass rate
* do not force match from start, breaks 2 tests
* allow starting wild cards to match everything
* disabled print buffering
* make last line visible if insert_final_newline true
* use log_quiet for debug
* adapted to changes on lite-xl/lite-xl#1232
* properly return from add/remove_project_directory overrides
* Use new trimwhitespace functionality if possible
|
|
|
|
(#170)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Also check if font cache is already building and alert the user.
|
|
|
|
|
|
|
|
Also added additional flag to support applying the status bar force
state globally and not only to document views.
|
|
Also adjusted ignore dirs default value to current from master.
|
|
Use proper block_comment thanks to lite-xl/lite-xl#1202
|
|
|
|
Update language_rivet.lua
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The issue can be triggered with code like the following:
`'"'.strlen("test:").'"';` would cause the string end to not be found.
The additional pattern on this commit allows properly terminating
the string by not matching the last closing character.
|
|
|
|
|
|
* Changed minimap to use Guldo's new scrollbar.
* Minimap fixes to use new scrollbar.
* Minor cleanup.
* Preempt this hitting other views inheriting from DocView.
* Adjusted percentage code.
* ??
* Fixed up calculation, and scrolling.
* Fixed clicking on thumb doing something, and fixed offset not being taken into account.
* Changed offset when clicking off.
* Ensured that we don't drag when we're not actually inside the thumb on click, and ensured that thumbd doesn't highlight unelss we're actually inside it.
* Fixing small little changes.
* Changed it so that we don't initate a drag when drag-hovering.
|
|
|
|
|
|
|
|
* Add language plugin for ERB files
erb files typically has filename.html.erb extension they contain
html markup and embedded ruby code this file should properly
syntax highlight both html and ruby parts
* merge html/htm in filetype check
|