-
-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
plugins/typescript-tools: init + test #966
Conversation
Thank you for taking a shot at this one :) |
Felt right since you're already working on rustacean for me :p |
834b878
to
ba85593
Compare
I've added most of the settings. There's a hurdle though. |
handlers = mkOption {
type = with helpers.nixvimTypes; nullOr (attrsOf strLuaFn);
apply = v: helpers.ifNonNull' v (mapAttrs (_: helpers.mkRaw) v);
default = null;
description = "...";
example = {
"textDocument/publishDiagnostics" = ''
api.filter_diagnostics(
-- Ignore 'This may be converted to an async function' diagnostics.
{ 80006 }
)
'';
};
}; |
fc7a18f
to
75c158e
Compare
75c158e
to
8d5af18
Compare
8204dd4
to
88aa611
Compare
8e6b578
to
da9500d
Compare
Added most top-level settings add rest of the options, create test remove line change option for onAttach some bugfixes, remove onAttach option and set it in options bugfixes change types, use enums instead of nullable strings Add description requested changes allow for a list of enums make option for on_attach function
da9500d
to
c15e4dd
Compare
Adds typescript-tools: https://github.com/pmizio/typescript-tools.nvim/
Fixes #964