00-11

joined 1 year ago
[–] 00-11@alien.top 1 points 11 months ago (1 children)
[–] 00-11@alien.top 1 points 1 year ago

Do you see the problem when you start Emacs with emacs -Q?

Check your value of option default-frame-alist...

[–] 00-11@alien.top 1 points 1 year ago

Is there a easy way to use emacs ?

Yes. Start it and type C-h t. Follow the simple tutorial directions.

[–] 00-11@alien.top 1 points 1 year ago

A couple of the Isearch+ features that let you limit the search space/context.

  1. You can limit isearching to the text in the region. Controlled by a user option, and can be toggled with C-x n during Isearch. Works also for a noncontiguous region, such as a rectangle.

  2. You can switch any time to isearching outside, instead of inside, the region.

  3. You can search within/without the zones of text defined by the lazy-highlight matches of a previous search.

Or search within/without the zones of text that have a certain text property or set of properties (optionally considering their values) -- any properties.

  1. Dynamic Isearch filtering: add/remove any number of search filters while isearching.

[–] 00-11@alien.top 1 points 1 year ago

+1.

  • +1 for the Abelson & Sussman lecture(s).

  • Plus links at Emacs Wiki Learn Emacs Lisp

[–] 00-11@alien.top 1 points 1 year ago (1 children)

As I said, please follow up off list, using M-x diredp-send-bug-report. You haven't even mentioned your platform etc.

One quick thing to try would be to evaluate this, to see if the extra font-locking is the problem: (remove-hook 'dired-mode-hook 'diredp--set-up-font-locking).

[–] 00-11@alien.top 1 points 1 year ago (4 children)

Keep investigating. (I assume the problem doesn't arise with just Helm and PDF-tools (i.e., without Dired+).)

[–] 00-11@alien.top 1 points 1 year ago (6 children)

d in the debugger steps into evaluating the current sexp to be evaluated.

c steps past it, i.e., it evaluates it without digging into the steps of evaluating it.

So you can use c to skip over steps that you don't want to get into in to detail, and use d otherwise.

[–] 00-11@alien.top 1 points 1 year ago (8 children)

So the problem is apparently not with Dired+'s dired-jump, but something else in Dired+. But if you can repro the problem easily using dired-jump, maybe try M-x debug-on-entry dired-jump and step through the debugger to see what seems to be the problem - with emacs -Q and just Dired+ and PDF-tools loaded. But instead of trying to debug it here, M-x diredp-send-bug-report, as mentioned above.

[–] 00-11@alien.top 1 points 1 year ago (1 children)

Bisect your init file. You can use command comment-region comment out 1/2 of it, then 3/4, then 7/8,... till you can see easily what's causing the problem. This is a binary search, so it narrows things down quickly.

[–] 00-11@alien.top 2 points 1 year ago (3 children)

Do you see the same problem if you start Emacs using emacs -Q (no init file)? If not, bisect your init file to find the culprit.

view more: ‹ prev next ›