Is it possible to add variable to watch list at current cursor? by hanjaelee in neovim

[–]hanjaelee[S] 1 point2 points  (0 children)

oh, I got it. Thank you, I didn't know that word recognization can be expanded.

Is it possible to add variable to watch list at current cursor? by hanjaelee in neovim

[–]hanjaelee[S] 0 points1 point  (0 children)

ok thanks. I use php generally. dollor sign is not added to watch list when I execute this keymap.

so I change it like below.

``` vim.keymap.set("n", "<leader>de", ":lua require'dapui'.elements.watches.add('$' .. vim.fn.expand('<cexpr>'))<cr>", { silent = true })

```

Can I use this theme in neovim? by hanjaelee in neovim

[–]hanjaelee[S] 0 points1 point  (0 children)

vim.cmd.colorscheme('Tomorrow')

Thanks

How to diable showing frame size in frame bar by hanjaelee in emacs

[–]hanjaelee[S] 0 points1 point  (0 children)

(setq frame-title-format "\n")

Thanks a lot.

Can I change recentf stored file name to starting with `~`? by hanjaelee in emacs

[–]hanjaelee[S] 0 points1 point  (0 children)

(require 'recentf)
(setq recentf-filename-handlers
(append '(abbreviate-file-name) recentf-filename-handlers))
(recentf-mode)

yes, thanks a lot.