Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/whitelynx/nvimswapcheck
A script to ease filtering and cleaning up (n)vim swap files
https://github.com/whitelynx/nvimswapcheck
Last synced: 26 days ago
JSON representation
A script to ease filtering and cleaning up (n)vim swap files
- Host: GitHub
- URL: https://github.com/whitelynx/nvimswapcheck
- Owner: whitelynx
- License: mit
- Created: 2023-01-24T11:22:50.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-09T07:24:38.000Z (8 months ago)
- Last Synced: 2024-03-09T08:32:24.700Z (8 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
nvimswapcheck
=============```
Usage: nvimswapcheck [OPTIONS]Options:
-h Show this help message, and exit
-m Only match modified files
-M Only match unmodified files
-r Only match files owned by running instances of nvim
-R Only match files owned by dead instances of nvim
-o Only display filenames
-O Show detailed file information
```Examples
--------Removing swap files from dead instances of (n)vim that have no modifications:
```
rm -v $(nvimswapcheck -MRo)
```