Dotfiles/site-modules/core/files
Ade Attwood a5cd17fe58 feat(vim): add dev_case plugin for a better search and replace
When you are in a buffer sometimes you want to do a search and replace
but preserve the case. For example if we have the following code.

```rust
let some_struct = SomeStruct::new();
```

if we want to rename this to `another_struct` we can call dev case and
it will search and replace preserving the case. We can run the following
command.

```
:S some_struct another_struct
```

This will replace the above code so we will be left with

```rust
let another_struct = AnotherStruct::new();
```

This plugin handles calling the cli tool and displaying an in place
preview of the change so you can see exactly what you will be changing.
It uses the `S` custom command so it feels similar to the built in `s`
Substitute command.
2024-06-08 17:53:07 +01:00
..
bin feat(sapling): add script to push up all bookmarks in a stack 2024-04-19 20:14:52 +01:00
emacs refactor(emacs): update terminal prompt and enable goto-address-mode 2022-04-25 19:50:13 +01:00
fonts refactor(core): start to make dotfiles public 2020-09-20 06:22:17 +01:00
oh-my-zsh fix(sapling): run the bin sl not the alias 2024-05-19 19:22:25 +01:00
scripts refactor(core): start to make dotfiles public 2020-09-20 06:22:17 +01:00
vim feat(vim): add dev_case plugin for a better search and replace 2024-06-08 17:53:07 +01:00
alacritty.yml feat(term): add alacritty and base16 colours 2020-09-20 21:13:11 +01:00
tmux.conf refactor(core): move from base16 themes to nord 2024-06-08 14:50:57 +01:00
wezterm.lua refactor(core): move from base16 themes to nord 2024-06-08 14:50:57 +01:00
zshrc refactor(core): move from base16 themes to nord 2024-06-08 14:50:57 +01:00