Useful Commands: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 28: | Line 28: | ||
:silent verbose map | :silent verbose map | ||
:redir END | :redir END | ||
=Leaders and Neovim= | |||
Leaders are keys you can press to activate a binding. In neovim you can set a leader key and then this is the key to activate a binding. E.g. | |||
<syntaxhighlight lang="bash"> | |||
# Set leader to space | |||
vim.g.mapleader = " " | |||
# Now space + e will open the diagnostic window. Copilot helped my out doing my LSP | |||
vim.keymap.set('n', '<leader>e', vim.diagnostic.open_float, { noremap = true, silent = true }) | |||
</syntaxhighlight> |
Revision as of 22:28, 30 March 2025
View Certificate Details
curl --insecure -vvI https://www.google.com 2>&1 | awk 'BEGIN { cert=0 } /^\* SSL connection/ { cert=1 } /^\*/ { if (cert) print }'
List or Delete Files With Spaces
find DONTUSESLASH -type d -name '.vs' -print0 | xargs -0 ls -l
find DONTUSESLASH -type d -name '.vs' -print0 | xargs -0 rm -rf
Size of Directories
du -sh -- * | sort -rh
List Size of node_modules
find . -name "node_modules" -type d -prune | xargs du -chs
Delete node_modules
find . -name "node_modules" -type d -prune -exec rm -rf '{}' +
Testing for TLS v1.0 Support
nmap --script ssl-enum-ciphers -p 443 bibble.co.nz
Show Neovim Bindings
Here we go
:redir! > vim_keys.txt :silent verbose map :redir END
Leaders and Neovim
Leaders are keys you can press to activate a binding. In neovim you can set a leader key and then this is the key to activate a binding. E.g.
# Set leader to space
vim.g.mapleader = " "
# Now space + e will open the diagnostic window. Copilot helped my out doing my LSP
vim.keymap.set('n', '<leader>e', vim.diagnostic.open_float, { noremap = true, silent = true })