template.nvim icon indicating copy to clipboard operation
template.nvim copied to clipboard

Quickly insert templates into file

Results 10 template.nvim issues
Sort by recently updated
recently updated
newest added

I don't know how much work it would need, but it could be nice to be able to set multiple cursors positions and jumping through them, similar to how we...

Following up on #38, it would be nice to allow the user to define custom expressions that will get replaced in a template. I would submit a PR but I...

Added a map to keep track of available expressions and the functions that return what to replace them with. I used the new `renderer` for all the existing expression and...

`Telecope find_template type=insert filter_ft=false` Not sure what else I can provide but running this command doesnt insert it into the buffer.

How to create a template for a project

I was trying to create a template for some latex and noticed that it wouldn't parse. The other option of .tpl removed my lsp and syntax highlighting, so I wanted...

For my use case, for a file named `input.awesome.tsx`, I need a variable with only `input`. Is it currently possible to do that through: {{_lua:vim.fn.expand(%:.:r)_}} set by lua script ?...

example template is following ``` struct {{_variableA_}} { public: {{_variableA_}}(); ~{{_variableA_}}(); {{_cursor_}} private: }; ``` but, when I remove '{{_cursor_}}', Error caused by arithmetic with nil value especially, the error...

I just tested some of the dynamic features to improve the static templates that I have. `{{_file_name_}}` and `{{_upper_file_}}` works. `{{_camel_case_file_}}` does not. I have the lastest version according to...