File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed
programs/neovim/config/lua/user/files Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ versioning is done in a continuous fashion without worries of breaking changes.
66
77## patches
88
9+ - ` nvim ` : offer shortform pasted printings of the selected variable 2025-12-16
910- ` tmux ` : remove continuous and resurrecting sessions with accident 2025-12-16
1011- ` claude ` : include the anthropic coding assistants in current work 2025-12-16
1112- ` darwin ` : setup work computer with shared defaults and dock setup 2025-12-16
Original file line number Diff line number Diff line change @@ -4,4 +4,5 @@ require("user.files.go")
44require (" user.files.groovy" )
55require (" user.files.mdx" )
66require (" user.files.netrw" )
7+ require (" user.files.python" )
78require (" user.files.zig" )
Original file line number Diff line number Diff line change 1+ require (" termcodes" )
2+
3+ vim .api .nvim_create_autocmd ({
4+ " FileType" ,
5+ }, {
6+ pattern = {
7+ " python" ,
8+ },
9+ callback = function ()
10+ vim .fn .setreg (" l" , ' yiwoprint(f": {}\\ n")' .. ESC .. " F:Pf{p$" )
11+ end ,
12+ })
You can’t perform that action at this time.
0 commit comments