Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-10-15 | Workaround broken workspaceFolders capability handlingworkaround/broken_rooturi | cos | |
According to [language server specification][spec] clients not announcing the workspaceFolders capability should fallback. Primarily to rootUri, and further to rootPath when needed. This commit works around the buggy behaviour with vim-ale. Since I have never ever seen typescript code prior to today, attempting to fix this properly seems a bit too challenging for me. [spec]: https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/ | |||
2024-09-09 | Merge pull request #140 from potatogim/mainHEADmain | bscan | |
improves field handling when inherited attrs are changed | |||
2024-09-06 | Merge pull request #141 from rabbiveesh/veesh/find-onigwasm-dynamically | bscan | |
Find onig.wasm dynamically | |||
2024-09-06 | fix: safer dynamic finding as fallback | Veesh Goldman | |
2024-09-01 | chore: ENOCONSOLELOGS | Veesh Goldman | |
2024-09-01 | fix: find oniguruma dynamically | Veesh Goldman | |
2024-08-22 | improves field handling when inherited attrs are changed | Jihyeon Gim | |
Signed-off-by: Jihyeon Gim <potatogim@potatogim.net> | |||
2024-08-19 | Documenting changes and bumping version | bscan | |
2024-08-19 | Merge pull request #135 from oalders/namespace-autoclean-import | bscan | |
Fix warnings via namespace::autoclean | |||
2024-08-07 | Fix warnings via namespace::autoclean | Olaf Alders | |
On Perl 5.40 a new warning is introduced when the import method of an unknown package is called. https://perldoc.perl.org/perldelta#Calling-the-import-method-of-an-unknown-package-produces-a-warning This is seen via PerlNavigator because Inquisitor.pm removes namespace::clean and namespace::autoclean from %INC. The solution is to add stub import subs for these packages so that the Perl interpreter no longer believes that they do not exist. | |||
2024-04-13 | Adding cmd instructions per #127 | bscan | |
2024-04-06 | Bumping version | bscan | |
2024-04-06 | Need to bundle tmLanguage json for #126 | bscan | |
2024-04-06 | Bumping version | bscan | |
2024-04-06 | Need to upgrade node.js types based on errors from prior github action | bscan | |
2024-04-06 | Bumping version | bscan | |
2024-04-06 | Moving asset extraction into the initialize step, plus clearing a node ↵ | bscan | |
deprecation warning | |||
2024-04-05 | Bumping version | bscan | |
2024-04-05 | Additional asset required | bscan | |
2024-04-05 | Bundling wasm file in webpack too. Plus version bump | bscan | |
2024-04-05 | Bumping version number | bscan | |
2024-04-05 | Updated binary building to be webpacked, plus correcting workflow dependencies | bscan | |
2024-04-05 | Need to include bin file | bscan | |
2024-04-05 | Adding changelog and bumping version | bscan | |
2024-04-05 | Adjust settings code for #125 | bscan | |
2024-04-05 | Merge pull request #119 from nugged/env_vars_and_tilda_in_paths | bscan | |
Two commits (can be cherrypicked): Custom Env vars for Perl in settings, and convert tilda to home in paths | |||
2024-04-05 | Merge pull request #117 from IAKOBVS/main | bscan | |
replace regex replace with string replace | |||
2024-04-03 | Merge pull request #121 from WhoIsSethDaniel/import-wrapper-no-stderr | bscan | |
do not write to STDERR | |||
2024-04-03 | Merge pull request #123 from WhoIsSethDaniel/logging-on-by-default-for-all | bscan | |
turn logging on by default for all editors | |||
2024-04-03 | turn logging on by default for all editors | Seth Daniel | |
2024-04-03 | do not write to STDERR | Seth Daniel | |
2024-03-22 | Add support for expanding leading tildas in paths | Andrii Nugged | |
This commit introduces functionality to expand leading tildas (~) in paths. The tilde is a common shorthand for the home directory in Unix-like operating systems, and this change allows our application to interpret and handle these paths correctly. Previously, if a user entered a path with a leading tilde, the application would not recognize it as a valid path. With this update, the application will now expand any leading tilde to the current user's home directory, allowing for more flexible and intuitive path input. This change improves the user experience by accepting a wider range of valid inputs and aligns the application's path handling behavior with established conventions in Unix-like operating systems. | |||
2024-03-22 | Add support for custom Perl environment variables | Andrii Nugged | |
Introduced two new environment variables: perlEnv and perlEnvAdd. - perlEnv: Hash. Pass environment variables to the perl executable. Skipped if undefined. - perlEnvAdd: Boolean. Add environment variables to current environment, or totally replace (perlEnv related). Default is true. | |||
2024-03-08 | replace regex replace with string replace | James Tirta Halim | |
2024-03-02 | Adding browser version and changelog to vsix | bscan | |
2024-03-01 | Use follow_skip to avoid crashing on some symlink setups. Also skip 'next'. ↵ | bscan | |
Fixes #115 | |||
2024-02-17 | Bumping version | bscan | |
2024-02-17 | Bumping version | bscan | |
2024-02-17 | Bug fix. TS regexes are not done in place. | bscan | |
2024-02-17 | Updating launch commands because of webpack | bscan | |
2024-02-17 | Change textmate scope to allow simpler pull request. The brackets in are ↵ | bscan | |
part of the variable and should not be bracket matched | |||
2024-02-16 | Fixing grammar issue with multi-line defined-or operator // on new line | bscan | |
2024-02-05 | Changelog updates | bscan | |
2024-02-05 | Allow disabling perl -c via settings. Also bumping version | bscan | |
2024-02-05 | Adding example syntax highlighting script | bscan | |
2024-02-05 | Fixing interpolation of punctuation variables in regex. Words starting with ↵ | bscan | |
:: are not keywords. Comments inside of package declaration. tr// should be colorized as a string. Bug on space following s{}{} | |||
2024-01-29 | Bump | bscan | |
2024-01-29 | Fix hash interpolation in regex, fix $ not recognized as anchor in various ↵ | bscan | |
places | |||
2024-01-29 | Bump | bscan | |
2024-01-29 | Adding character class to prevent from getting bracket matched while ↵ | bscan | |
interpolated. Aesthetic preference I suppose |