Giter Site home page Giter Site logo

Comments (3)

hubisan avatar hubisan commented on June 17, 2024 1

Thanks.

I changed my code to:

(defun my-feat-evil/bolp-fix (orig-fn)
  "Fix `bolp' not returning `t' if in Evil visual state.
This occurs when only the first character is marked."
  (save-excursion
    (when (eq evil-state 'visual)
      (goto-char evil-visual-point))
    (funcall orig-fn)))

(advice-add 'bolp :around #'my-feat-evil/bolp-fix)

from evil.

hubisan avatar hubisan commented on June 17, 2024

For the time being I am using an advice to get around this edge case (answer to question on stackexchange, slightly modified):

  (defun my-feat-evil/bolp-fix (orig-fn)
    "Fix `bolp' sometimes not returning `t' if in Evil visual state.
If only the first character of a line is marked, else it works."
    (save-excursion
      (when (and (eq evil-state 'visual)
                 (= (- (region-end) (region-beginning)) 1)
                 (= (line-beginning-position) (- (point) 1)))
        (backward-char))
      (funcall orig-fn)))
  (advice-add 'bolp :around #'my-feat-evil/bolp-fix)

I understand the problem now. Without evil-mode setting the mark doesn't mark the first character, one has to move forward one char to do so. Evil automatically marks the first character to copy the behaviour of vim. So it moves forward by one character when switching to visual state. Unfortunately this is not so clear for the user when using evil-mode as the cursor only switches the color and doesn't seem to move.

from evil.

axelf4 avatar axelf4 commented on June 17, 2024

While in Visual(-line) state before each command, the point&mark are temporarily adjusted such that delete-region etc. work as expected. The original values are stored in evil-visual-point and evil-visual-mark. So you could do e.g.

M-: (save-excursion (goto-char evil-visual-point) (bolp)) RET

If I switch to visual state when I am not at the beginning of the line and then move to the beginning of the line with 0, bolp correctly returns t.

This is a question of whether the point or the mark is at BOL.

from evil.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.