mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
chore(nvim): Remove useless comments
This commit is contained in:
parent
e8d5568745
commit
4da1667c54
10 changed files with 20 additions and 99 deletions
|
|
@ -341,6 +341,16 @@ mapkey("yY", "yank link without parameter", function () {
|
|||
Clipboard.write(url.origin + url.pathname);
|
||||
});
|
||||
|
||||
unmap("yma")
|
||||
unmap("ymc")
|
||||
unmap("ymv")
|
||||
|
||||
map("ym", "yank link as markdown", function () {
|
||||
const url = new URL(window.location.href);
|
||||
const title = document.title;
|
||||
Clipboard.write(`[${title}](${url.origin + url.pathname})`);
|
||||
});
|
||||
|
||||
// #region bilibili.com
|
||||
mapkey(
|
||||
",n",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue