This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function SearchBackticksInside(include) | |
| -- search back for start ` | |
| vim.fn.search("`", "b") | |
| if not include then | |
| -- search 1st non-empty char | |
| vim.fn.search("\\S") | |
| end | |
| vim.api.nvim_command("normal! m<") | |
| -- search forward for end ` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8" ?> | |
| <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <Title>propc</Title> | |
| <Shortcut>propc</Shortcut> | |
| <Description>Code snippet for an automatically implemented property | |
| Language Version: C# 3.0 or higher with comments</Description> | |
| <Author>Shuxiao Wang</Author> | |
| <SnippetTypes> |