aboutsummaryrefslogtreecommitdiff
path: root/data/core
AgeCommit message (Collapse)Author
2021-08-01Merge branch 'master' into MergedMergedAdam
2021-07-28Move gutter width calculation out of loopFrancesco Abbate
2021-07-28fix line number align bugcukmekerb
2021-07-28align line numbers to rightcukmekerb
2021-07-27Only load plugins that are lua filesFrancesco Abbate
Before trying to load a plugin or checking its version verify if it looks like a lua file. Close issue #349.
2021-07-26+readability, hopefullyep
2021-07-26fix workspace folders on different drives in Windowsep
2021-07-20Fixed doc, and fixed plugin load.Adam Harrison
2021-07-20Removed unecessary duplicates.Adam Harrison
2021-07-20Merged dev to master.Adam Harrison
2021-07-17Bump 2.0-beta1 versionv2.0-beta1Francesco Abbate
2021-07-15Allowed find to function across different views.Adam Harrison
2021-07-15Updated keys as well.Adam Harrison
2021-07-15Reverted find fixes.Adam Harrison
2021-07-15Revert "fix number of parameters passed to self:move_towards"takase1121
Apparently the LSP intellisense is wrong on this one, this actually causes an infinite loop
2021-07-15fix number of parameters passed to self:move_towardstakase1121
self:move_towards(self) causes self to be passed twice, ignoring rate
2021-07-15remove deprecated codetakase1121
2021-07-15Fix problem with previous commitFrancesco Abbate
Desastrous problem where core.normalize_path was removing the leading /.
2021-07-15Remove duplicate normalize_path functionFrancesco Abbate
Use the function defined in the "common" module. Move the check for not-nil filename from common.normalize_path to core.open_doc. In this latter the filename can be nil if a new unnamed document is created.
2021-07-15Namespace plugin-specific configuration settings.Adam Harrison
2021-07-13Merge pull request #303 from jgmdev/treeview-contextmenuAdam
Added context menu to treeview.
2021-07-09Merge pull request #318 from lite-xl/MacOSCloseAdam
Created an extra command, to implement appropriate cmd+w behaviour on Mac.
2021-07-01reset blink timer when a new cursor is createdlqdev
2021-06-29Merge pull request #313 from jgmdev/add-system-rmdirAdam
Added `system.rmdir(path)`, and `common.rm(path, recursive)`
2021-06-28Added context menu to treeview.jgmdev
2021-06-28Added system.rmdir(path)jgmdev
It is reported that the built-in lua function os.remove(path) does not removes empty directories on windows. To fix this a system.rmdir function is introduced that calls a native win32 function. Also common.rm(path, recursively) was added which wraps system.rmdir() to easily delete an entire folder with all its contents.
2021-06-28Fixed XDG issue.Adam Harrison
2021-06-27Added in checks so that the entire thing isn't consumed.Adam Harrison
2021-06-27Created an extra command, to implement appropriat cmd+w behaviour on mac.Adam Harrison
2021-06-24Changed over ctrl+w keybinding over to cmd+w, as per #311.Adam Harrison
2021-06-24Merge pull request #296 from lite-xl/font-copy-apiAdam
Add a C API copy method for font_desc objects
2021-06-21Added in lineguide to core.Adam Harrison
2021-06-21Add a C API copy method for font_desc objectsFrancesco Abbate
Add a renderer.font's method "copy" to clone the font object by specifying an optional new size. In the size is not given the size of the original object is used. Should fulfill the request from issue #288.
2021-06-20Fixed regex replace.Adam Harrison
2021-06-20Fixed a minor bug.Adam Harrison
2021-06-20Added in tooltips, the ability to swap between different find modes with a ↵Adam Harrison
keybind.
2021-06-20Abstracted out draw caret, so that the line guide can draw under it. (#287)Adam
* Abstracted out draw caret, so that the line guide can draw under it. * Moved caret drawing out to draw_overlay.
2021-06-20Added Doc:on_close() for pluginsjgmdev
2021-06-18Fixed minor bugs; swap no longer returns from get.Adam Harrison
2021-06-18Rebased, and added the ability for ctrl to just create new cursors.Adam Harrison
2021-06-18Fixed recursion error.Adam Harrison
2021-06-18Removed unecessary check.Adam Harrison
2021-06-18Made get_selections a bit more flexible.Adam Harrison
2021-06-18Added in the ability to iterate through cursors backwards.Adam Harrison
2021-06-18Used routine to add cursors in order correctly.Adam Harrison
2021-06-18Introduced the constraint that all cursors must be in order.Adam Harrison
2021-06-18Ensured that textual inputs sort cursors so that we don't get *real* weird ↵Adam Harrison
behaviour.
2021-06-18Fixed merging. Fixed selection undo stack.Adam Harrison
2021-06-18Used an inappropriate function in a selection loop.Adam Harrison
2021-06-18Added in cursor merging behaviour.Adam Harrison