Skip to content

Commit 947b209

Browse files
authored
rename plugin (#10)
1 parent f11a191 commit 947b209

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
# Copy With Context Plugin for Vim
1+
# copy_with_context.nvim
22
![Neovim](https://img.shields.io/badge/NeoVim-%2357A143.svg?&style=for-the-badge&logo=neovim&logoColor=white)
3-
![Vim](https://img.shields.io/badge/VIM-%2311AB00.svg?style=for-the-badge&logo=vim&logoColor=white)
4-
[![Hits-of-Code](https://hitsofcode.com/github/zhisme/copy_with_context.vim)](https://hitsofcode.com/github/zhisme/copy_with_context.vim/view)
5-
![GitHub Tag](https://img.shields.io/github/v/tag/zhisme/copy_with_context.vim)
6-
![GitHub License](https://img.shields.io/github/license/zhisme/copy_with_context.vim)
3+
[![Hits-of-Code](https://hitsofcode.com/github/zhisme/copy_with_context.nvim)](https://hitsofcode.com/github/zhisme/copy_with_context.nvim/view)
4+
![GitHub Tag](https://img.shields.io/github/v/tag/zhisme/copy_with_context.nvim)
5+
![GitHub License](https://img.shields.io/github/license/zhisme/copy_with_context.nvim)
76

87
Copy lines with file path and line number metadata. Perfect for sharing code snippets with context.
98

@@ -16,7 +15,9 @@ When sharing code snippets, it's often useful to include the file path and line
1615
- Using [packer.nvim](https://github.com/wbthomason/packer.nvim):
1716

1817
```lua
19-
use 'zhisme/copy_with_context'
18+
use({
19+
'zhisme/copy_with_context.nvim'
20+
})
2021
```
2122

2223
- Using [vim-plug](https://github.com/junegunn/vim-plug):
@@ -25,7 +26,7 @@ use 'zhisme/copy_with_context'
2526
call plug#begin()
2627
2728
" Other plugins...
28-
Plug 'zhisme/copy_with_context.vim'
29+
Plug 'zhisme/copy_with_context.nvim'
2930
3031
call plug#end()
3132
```
@@ -103,7 +104,7 @@ require('copy_with_context').setup({
103104
```
104105

105106
## Contributing
106-
Bug reports and pull requests are welcome on GitHub at https://github.com/zhisme/copy_with_context.vim. Ensure to test your solution and provide a clear description of the problem you are solving.
107+
Bug reports and pull requests are welcome on GitHub at https://github.com/zhisme/copy_with_context.nvim. Ensure to test your solution and provide a clear description of the problem you are solving.
107108

108109
## License
109110
The plugin is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

0 commit comments

Comments
 (0)