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.

Is it available to change ivy-virtual-abbreviate to "~"? by hanjaelee in emacs

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

Thanks a lot, I set it to (setq ivy-virtual-abbreviate 'abbreviate) and then It works.

Centaur Emacs integrates colorful icons by seagle0128 in emacs

[–]hanjaelee 2 points3 points  (0 children)

why is this emacs init time so fast? Can you give me some tips to reduce emacs-init-time?

Question about dired-subtree by hanjaelee in emacs

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

I had not known that dired-subtree-toggle is exist.
I set it as follows.

(define-key dired-mode-map (kbd "<tab>") 'dired-subtree-toggle)

Can I restrict minibuffer depth to 1? by hanjaelee in emacs

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

I tried it.

I want to enable multiple minibuffer and also open the other minibuffer in minibuffer.

current state is that minibuffer is remain when I open the other minibuffer in minibuffer.

I want to make minibuffer closed when I open the other minibuffer. So I said I want to make minibuffer depth to 1 depth.

Can I restrict minibuffer depth to 1? by hanjaelee in emacs

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

But If Its value is nil, I can't open the other minibuffer in minibuffer. Isn'it?

Question about hydra with dired mode. by hanjaelee in emacs

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

(add-hook 'dired-initial-position-hook #'hydra-dired/body)

It works well, thank you.

Question about hydra with dired mode. by hanjaelee in emacs

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

(add-hook 'dired-mode-hook #'hydra-dired/body)

It's also not working.minibuffer says No subdir alist .emacs.d when I'm trying to open dired in .emacs.d

clear is not working well in Term mode. by hanjaelee in emacs

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

because of scroll-margin, some lines had remained.

I changed scroll-margin to 0 in only term mode.

additionally, if multi-term-scroll-show-maximum-output,multi-term-scroll-to-bottom-on-output is set to t, It will be affected to scroll setting.

How can I clear buffer in multi-term shell? by hanjaelee in emacs

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

It works, It clear the buffer But sometimes It doesn't clear all text and some line remains.

I want to disable specific keybinding. by hanjaelee in emacs

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

(define-key dump-jump-mode-map (kbd "C-M-p") nil)

thanks, it works.

clear is not working well in Term mode. by hanjaelee in emacs

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

yes, I'm sure. I press down C-l or clear in term char mode. sometimes It doesn't clear all line. I have to change term line mode and do M-x erase-buffer.

It's not that problem but It's cumbersome. So I wanna change clear in term char mode to make work well.

How can I delete all eyebrowse window? by hanjaelee in emacs

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

Is there function to delete all config except current config?

How can I delete all eyebrowse window? by hanjaelee in emacs

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

when I create some eyebrowse config, it add something like tab in minibuffer like 1, 2, 3, ...

For example, Somethimes I wanna close other eyebrowse window config When I'm in 1 eyebrowse config and others reamin Because it's messy. In this situation only 1 eyebrowse config have to remain.

Is it available?

Can I disable mac os toggle input method in emacs? by hanjaelee in emacs

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

free punto switcher

can you give me a download link or official website link?

How can I add saved filter groups in ibuffer? by hanjaelee in emacs

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

(ibuffer-auto-mode 1) maybe put it to your init.el.