aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-09-19Testing a project config to automate buildsconsole-based-lite-projectFrancesco Abbate
2021-09-19Normalize to project dir in treeview openFrancesco Abbate
When left-clicking in a TreeView file we use now core.normalize_to_project_dir to normalize correctly the file name.
2021-09-19Scale custom syntax fonts for scale pluginFrancesco Abbate
Close #539.
2021-09-19Avoid unnecessary call to SDL_GetModStateFrancesco Abbate
2021-09-18Added in custom runtime environment variable for ease of testing. (#538)Adam
2021-09-17Reset syntax highlighting on file renameGuldoman
2021-09-17Fix numpad fn keys (#532)Francesco
* Fix the numeric keypad function keys As suggested in: https://github.com/lite-xl/lite-xl/issues/64 * Apply scancode lookup to KEY_UP events
2021-09-17Force showing tabs when dragging themGuldoman
2021-09-17Implement tab drag and dropGuldoman
2021-09-17Move single tab drawing to its own functionGuldoman
2021-09-17Merge pull request #533 from adamharrison/markdown-blocksAdam
Subsyntax Markdown Blocks
2021-09-16Syntax.Adam Harrison
2021-09-16Markdown subsyntax highlighting.Adam Harrison
2021-09-15Fix wrong locked sibling checkGuldoman
Previously if the split type was "hsplit", but `locked_size_x` was falsy, `locked_size_y` was wrongly used.
2021-09-15Ensure that the primary node always has a `View`Guldoman
2021-09-15Only check if sibling is locked in the split directionGuldoman
If the sibling is not locked in the direction of the split, it should fill the space.
2021-09-15Fix checking if sibling is locked when removing `View`sGuldoman
We only checked if sibling was locked in the `x` direction.
2021-09-11Merge branch with modifications for 2.0.2 releaseFrancesco Abbate
2021-09-10Fix repackage script to restore project versionv2.0.2Francesco Abbate
2021-09-10Add -branch option in repackage scriptFrancesco Abbate
2021-09-10Avoid bug when replacement stop at end of stringFrancesco Abbate
Detect when we are past the end of the string to avoid by checking if byte is not nil. Fix #510.
2021-09-10Use line/col to identify selection in replace commandFrancesco Abbate
2021-09-09Do not fail search if there was an option changeFrancesco Abbate
2021-09-09Reword changelogFrancesco Abbate
2021-09-09Bring back command find-replace:select-nexttesting-2.0.2Francesco Abbate
Bring back the command like before to keep single selection but with ctrl+f3 keybindings. Change the name of the new multi-cursor command but keep the ctrl+d keybinding.
2021-09-09Allow `find-replace:select-next` to select more occurrences after wrapGuldoman
The initial position for the search is defined by the last selection towards the end of the file. After reaching the end of the file, it would always select the same selection to start the search from. Now, we start the search from each selection, until a new occurrence is found.
2021-09-09Bring back command find-replace:select-nextFrancesco Abbate
Bring back the command like before to keep single selection but with ctrl+f3 keybindings. Change the name of the new multi-cursor command but keep the ctrl+d keybinding.
2021-09-09Allow `find-replace:select-next` to select more occurrences after wrapGuldoman
The initial position for the search is defined by the last selection towards the end of the file. After reaching the end of the file, it would always select the same selection to start the search from. Now, we start the search from each selection, until a new occurrence is found.
2021-09-09Add previous find and replace in sessionFrancesco Abbate
2021-09-09Add missing remove tooltip callFrancesco Abbate
2021-09-09Remeber initial user text for hidden suggestionsFrancesco Abbate
When using hidden suggestions remember the text user was typing when navigating suggestions. Ensure also that in the previously searched expressiosn we have no duplicate entries.
2021-09-09Use hidden suggestions also for replace dialogFrancesco Abbate
2021-09-09Fix error with hidden suggestionsFrancesco Abbate
Avoid indexing a nil if there are no suggestions.
2021-09-09Implement hidden suggestions for find dialogFrancesco Abbate
2021-09-09Do not add selection with newlines in replaceFrancesco Abbate
If the selected text containes newlines it doesn't make sense to use it as the initial text in the "replace text" command view. Do not use the selected text if a newline is found in the selection. Fix #511.
2021-09-09revert new keyboard bindingstakase1121
2021-09-09add autocomplete:cycletakase1121
Some (probably lots) of people are used to tabbing through autocomplete. now, tab is binded to autocomplete:cycle while enter is binded to autocomplete:complete.
2021-09-08Improve info.plist for macOS package configFrancesco Abbate
As suggested by @redtide and @Timofffee.
2021-09-08Fix macOS minimum system version in info.plistFrancesco Abbate
2021-09-08Improve info.plist for macOS package configFrancesco Abbate
As suggested by @redtide and @Timofffee.
2021-09-08Revert horizontal scroll implementationGuldoman
2021-09-07Prepare 2.0.2 version and changelogFrancesco Abbate
2021-09-07Fix `treeview:open-in-system` command on WindowsGuldoman
The first argument is the title for the `CMD` window.
2021-09-07Fix `treeview:open-in-system` command on WindowsGuldoman
The first argument is the title for the `CMD` window.
2021-09-07Fix problem with -psn argument on macOSFrancesco Abbate
2021-09-07Add initial suggestion in open-project-folderFrancesco Abbate
2021-09-07Adopt bigger fonts by defaultFrancesco Abbate
2021-09-07Fixed some build scripts issues, keep bash always updated on macOSredtide
2021-09-07Bring back pgo option in new build package scriptFrancesco Abbate
2021-09-07Adapt all scripts to work together with build-packages.shredtide