Re: [O] Outline cycling does not preserve point's position

2013-09-14 Thread Carsten Dominik
On 14.9.2013, at 19:16, Suvayu Ali wrote: > Hi Nicolas, > > On Sat, Sep 14, 2013 at 12:29:00AM +0200, Nicolas Goaziou wrote: >> Hello, >> >> Carsten Dominik writes: >> >>> When the functions are done, please go ahead and commit them and bind >>> them to C-up/down. >> >> Done. > > Do you th

Re: [O] Outline cycling does not preserve point's position

2013-09-14 Thread Suvayu Ali
Hi Nicolas, On Sat, Sep 14, 2013 at 12:29:00AM +0200, Nicolas Goaziou wrote: > Hello, > > Carsten Dominik writes: > > > When the functions are done, please go ahead and commit them and bind > > them to C-up/down. > > Done. Do you think it would be nicer if org-forward-paragraph takes argument

Re: [O] Outline cycling does not preserve point's position

2013-09-14 Thread Jambunathan K
Nicolas Goaziou writes: >> Should there be a pit-stop at #+END in the segment below. > You can use `org-forward-element' to go there. It makes no difference if I use `org-forward-element' or `org-forward-linear-element'. The reason is clear if one examines the parser output. #+BEGIN and #+END

Re: [O] Outline cycling does not preserve point's position

2013-09-13 Thread Carsten Dominik
Hello Nicolas, thank you! - Carsten On 14.9.2013, at 00:29, Nicolas Goaziou wrote: > Hello, > > Carsten Dominik writes: > >> When the functions are done, please go ahead and commit them and bind >> them to C-up/down. > > Done. > > > Regards, > > -- > Nicolas Goaziou signature.asc De

Re: [O] Outline cycling does not preserve point's position

2013-09-13 Thread Nicolas Goaziou
Hello, Carsten Dominik writes: > When the functions are done, please go ahead and commit them and bind > them to C-up/down. Done. Regards, -- Nicolas Goaziou

Re: [O] Outline cycling does not preserve point's position

2013-09-13 Thread Carsten Dominik
Hi Nicolas, thanks for these. Please see the two comments below. On Sep 11, 2013, at 10:01 PM, Nicolas Goaziou wrote: > Jambunathan K writes: > >> I am happy with whatever is the latest version. You may want to commit >> it. > > I copy here[fn:1] the current version, for the record, along

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Jambunathan K
Nicolas Goaziou writes: > Jambunathan K writes: > >> Suvayu Ali writes: >> And I agree with you, beginning of line is a good target column. >>> >>> On reading Nicolas's explanation, I agree too. This is better. >> >> The decision should be based on what the user would do after doing a >>

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Jambunathan K
Nicolas Goaziou writes: > It's a Sexp motion. Good opportunity to review the following bindings. C-c C-^ org-up-element C-c C-_ org-down-element Btw, C-M-p and C-M-n actually traverses the various org-links, fo

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Jambunathan K
Nicolas Goaziou writes: > Some points are still to be discussed: > > 1. What to do on node properties? > 2. What to do on source blocks? Looks good to me. Should there be a pit-stop at #+END in the segment below. --8<---cut here---start->8--- That one s

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Jambunathan K
Suvayu Ali writes: >> And I agree with you, beginning of line is a good target column. > > On reading Nicolas's explanation, I agree too. This is better. The decision should be based on what the user would do after doing a C-down and C-up. If *you* use C-down and C-up for persusal (as yourse

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Jambunathan K
Nicolas Goaziou writes: >> `org-forward-paragraph' is much better. As long as the docstring or >> comments mention that Org's notion of paragraph is much more nuanced or >> richer than a text-mode's notion of paragraph. > > OK. Suggestions welcome. > > Meanwhile, here is an updated version for

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Jambunathan K
I am happy with whatever is the latest version. You may want to commit it.

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Jambunathan K
Jambunathan K writes: > Seems to like beginning of line. For repated C-down motion, where the cursor "rests" within the element is immaterial. So the question is at what position the cursor should rest so that becomes easy. Whatever could be: 1. editing. 2. Surgical motion with sexp comman

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Jambunathan K
Some suggestions: 1. Give a better name. Say "pre-order" traversal of element in the parse tree. [1] 2. Now if I M-h, C-x C-x and Deactivate mark, I essentially short-circuit the traversal of whole subtree rooted at point. There should be a convenient binding for it. Same

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Jambunathan K
I will try out your changes later in the day... Meanwhile, > I don't know what "pre-order" means. What about > `org-flat-forward-element' By, flat or linear you really mean a serialized (or stringified) version of parse-tree. i.e., An Org buffer is really a serialized representation of the pa

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Jambunathan K
Nicolas Goaziou writes: > I don't understand. Are you talking about the error message? There is no > "canonical" C-down position, so I'm a bit confused. Put your cursor on the blank line between. Do a C-down. You will see the cursor moving and also an error reported. So, the "empty line" is a

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Jambunathan K
Nicolas Goaziou writes: > Thanks. Take 2: Looks good. Less surprises. Some open questions... I have no preference one way or the other. 1. Seems to like beginning of line. May be it should do a back-to-indentation. It is disconcerting to have cursor rest on margins. It should active

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Jambunathan K
Nicolas Goaziou writes: > Here's a first draft for the linear forward motion. cond: Symbol's function definition is void: org-forward-and-down-element

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Suvayu Ali
Hi Jambu, On Thu, Sep 12, 2013 at 02:58:02PM +0530, Jambunathan K wrote: > Nicolas Goaziou writes: > > > Jambunathan K writes: > > > >> Suvayu Ali writes: > >> > And I agree with you, beginning of line is a good target column. > >>> > >>> On reading Nicolas's explanation, I agree too. Th

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Nicolas Goaziou
Jambunathan K writes: > Suvayu Ali writes: > >>> And I agree with you, beginning of line is a good target column. >> >> On reading Nicolas's explanation, I agree too. This is better. > > The decision should be based on what the user would do after doing a > C-down and C-up. > > If *you* use C

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Nicolas Goaziou
Hello, Jambunathan K writes: > Nicolas Goaziou writes: > >> Some points are still to be discussed: >> >> 1. What to do on node properties? >> 2. What to do on source blocks? > > Looks good to me. > > Should there be a pit-stop at #+END in the segment below. Point never ends of closing line

Re: [O] Outline cycling does not preserve point's position

2013-09-12 Thread Sebastien Vauban
Hello Nicolas, Nicolas Goaziou wrote: > Some points are still to be discussed: > > 1. What to do on node properties? I would opt for `forward-paragraph', to have something different than `next-line'. Otherwise, `C-down' and `down' would simply do the same thing. Not forbidden, but seems useless

Re: [O] Outline cycling does not preserve point's position

2013-09-11 Thread Suvayu Ali
Hi Nicolas, On Wed, Sep 11, 2013 at 10:01:31PM +0200, Nicolas Goaziou wrote: > Jambunathan K writes: > > > I am happy with whatever is the latest version. You may want to commit > > it. > > I copy here[fn:1] the current version, for the record, along with its backward > counterpart. Some point

Re: [O] Outline cycling does not preserve point's position

2013-09-11 Thread Nicolas Goaziou
Jambunathan K writes: > I am happy with whatever is the latest version. You may want to commit > it. I copy here[fn:1] the current version, for the record, along with its backward counterpart. Some points are still to be discussed: 1. What to do on node properties? 2. What to do on source

Re: [O] Outline cycling does not preserve point's position

2013-09-11 Thread Nicolas Goaziou
Jambunathan K writes: > Hmmm... Object traversal. > > Now there should be a way to move between objects: Move to the next > object of the same type the cursor is on. This is interesting but not really possible at the moment. Currently Elements implement "successors" functions, which are basi

Re: [O] Outline cycling does not preserve point's position

2013-09-11 Thread Nicolas Goaziou
Jambunathan K writes: > Nicolas Goaziou writes: > >> I don't understand. Are you talking about the error message? There is no >> "canonical" C-down position, so I'm a bit confused. > > Put your cursor on the blank line between. Do a C-down. You will see > the cursor moving and also an error re

Re: [O] Outline cycling does not preserve point's position

2013-09-11 Thread Nicolas Goaziou
Jambunathan K writes: > `org-forward-paragraph' is much better. As long as the docstring or > comments mention that Org's notion of paragraph is much more nuanced or > richer than a text-mode's notion of paragraph. OK. Suggestions welcome. Meanwhile, here is an updated version for the functi

Re: [O] Outline cycling does not preserve point's position

2013-09-11 Thread Suvayu Ali
On Tue, Sep 10, 2013 at 11:08:23PM +0200, Carsten Dominik wrote: > > And I agree with you, beginning of line is a good target column. On reading Nicolas's explanation, I agree too. This is better. Cheers, -- Suvayu Open source is the future. It sets us free.

Re: [O] Outline cycling does not preserve point's position

2013-09-11 Thread Nicolas Goaziou
Hello, Jambunathan K writes: > Some suggestions: > > 1. Give a better name. Say "pre-order" traversal of element in the >parse tree. [1] I don't know what "pre-order" means. What about `org-flat-forward-element' or simply (but misleading) `org-forward-paragraph'? > 3. When you say "Should

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Carsten Dominik
On 10.9.2013, at 21:48, Nicolas Goaziou wrote: > Hello, > > Suvayu Ali writes: > >> 1. When traversing the file header, goes one line at a time. I would >> expect to go to the next blank line. In the attached Org file, from >> somewhere on #+TITLE to the blank line before the first head

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Nicolas Goaziou
Suvayu Ali writes: > Okay agreed there is nothing called "file header", but would be nice to > skip all the setup stuff (wherever in the file) and get to the > content. It's really out of the scope of this function. There are other solutions to ignore large "file headers", e.g. stuff them in a d

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Nicolas Goaziou
Jambunathan K writes: > Nicolas Goaziou writes: > >> Thanks. Take 2: > > Looks good. Less surprises. Some open questions... I have no > preference one way or the other. > > 1. Seems to like beginning of line. May be it should do a >back-to-indentation. It is disconcerting to have cursor

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Samuel Wales
On 9/10/13, Carsten Dominik wrote: > I think the main application is reasonably fast motion > and selection in a *linear* way. Is this correct, or do people > disagree here with me? Agreed, C-down is next paragraph. Also C-M-arrow for headlines, with up/down being linear and left/right being sa

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Nicolas Goaziou
Hello, Jambunathan K writes: > Nicolas Goaziou writes: > >> Here's a first draft for the linear forward motion. > > cond: Symbol's function definition is void: > org-forward-and-down-element Hmm. That's a silly mistake (few aren't): I changed its name as a second thought and forgot to update t

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Nicolas Goaziou
Hello, Suvayu Ali writes: > 1. When traversing the file header, goes one line at a time. I would >expect to go to the next blank line. In the attached Org file, from >somewhere on #+TITLE to the blank line before the first headline. There no such thing as a "file header". I think that

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Suvayu Ali
On Tue, Sep 10, 2013 at 08:58:43PM +0200, Suvayu Ali wrote: > > Some comments and a backtrace (I used the corrected 2nd revision): Forgot to edit that out, no backtrace. :) -- Suvayu Open source is the future. It sets us free.

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Suvayu Ali
Hi Nicolas, On Tue, Sep 10, 2013 at 06:33:16PM +0200, Nicolas Goaziou wrote: > > Suvayu Ali writes: > > > On Tue, Sep 10, 2013 at 11:02:35AM +0200, Carsten Dominik wrote: > >> > >> And by linear, I think we don't mean strictly linear, but on a > >> paragraph/table/item scale, ignoring hierarchy

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Suvayu Ali
Hi Nicolas, On Tue, Sep 10, 2013 at 09:48:53PM +0200, Nicolas Goaziou wrote: > Suvayu Ali writes: > > > 1. When traversing the file header, goes one line at a time. I would > >expect to go to the next blank line. In the attached Org file, from > >somewhere on #+TITLE to the blank line

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Nicolas Goaziou
Hello, Suvayu Ali writes: > On Tue, Sep 10, 2013 at 11:02:35AM +0200, Carsten Dominik wrote: >> >> On 10.9.2013, at 10:50, Suvayu Ali wrote: >> >> > On Tue, Sep 10, 2013 at 10:16:06AM +0200, Carsten Dominik wrote: >> >> >> >> The question is: What are people using C-arrow for? >> >> >> >>

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Jambunathan K
Nicolas Goaziou writes: > When depth isn't involved When I am within a nested list (any arbitray position) and I C-down what should happen? When I am on an headline and I C-down, I find it disconcerting that cursor takes a far

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Suvayu Ali
On Tue, Sep 10, 2013 at 11:02:35AM +0200, Carsten Dominik wrote: > > On 10.9.2013, at 10:50, Suvayu Ali wrote: > > > On Tue, Sep 10, 2013 at 10:16:06AM +0200, Carsten Dominik wrote: > >> > >> The question is: What are people using C-arrow for? > >> > >> I think the main application is reasona

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Carsten Dominik
On 10.9.2013, at 10:50, Suvayu Ali wrote: > On Tue, Sep 10, 2013 at 10:16:06AM +0200, Carsten Dominik wrote: >> >> The question is: What are people using C-arrow for? >> >> I think the main application is reasonably fast motion >> and selection in a *linear* way. Is this correct, or do peopl

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Suvayu Ali
On Tue, Sep 10, 2013 at 10:16:06AM +0200, Carsten Dominik wrote: > > The question is: What are people using C-arrow for? > > I think the main application is reasonably fast motion > and selection in a *linear* way. Is this correct, or do people > disagree here with me? I use it for navigating

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Carsten Dominik
On 10.9.2013, at 09:58, Carsten Dominik wrote: > > On 10.9.2013, at 09:53, Suvayu Ali wrote: > >> On Tue, Sep 10, 2013 at 09:32:57AM +0200, Suvayu Ali wrote: >>> On Tue, Sep 10, 2013 at 08:03:32AM +0200, Carsten Dominik wrote: One more thought: What if the paragraph motion command

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Carsten Dominik
On 10.9.2013, at 09:53, Suvayu Ali wrote: > On Tue, Sep 10, 2013 at 09:32:57AM +0200, Suvayu Ali wrote: >> On Tue, Sep 10, 2013 at 08:03:32AM +0200, Carsten Dominik wrote: >>> >>> One more thought: What if the paragraph motion commands did use elements, >>> but >>> ignored the hierarchy. So

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Suvayu Ali
On Tue, Sep 10, 2013 at 09:32:57AM +0200, Suvayu Ali wrote: > On Tue, Sep 10, 2013 at 08:03:32AM +0200, Carsten Dominik wrote: > > > > One more thought: What if the paragraph motion commands did use elements, > > but > > ignored the hierarchy. So they jump to the next headline, paragraph, > >

Re: [O] Outline cycling does not preserve point's position

2013-09-10 Thread Suvayu Ali
On Tue, Sep 10, 2013 at 08:03:32AM +0200, Carsten Dominik wrote: > > One more thought: What if the paragraph motion commands did use elements, but > ignored the hierarchy. So they jump to the next headline, paragraph, table, > src block, item? > > I think this would feel similar to what paragr

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Eric Abrahamsen
Carsten Dominik writes: > On 10.9.2013, at 05:47, Carsten Dominik wrote: > >> >> On 9.9.2013, at 17:41, Nicolas Goaziou wrote: >> >>> Carsten Dominik writes: >>> It is extremely predictable if you know about the structure of an Org document and if you think in elements. >>> >>> I

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Carsten Dominik
On 10.9.2013, at 05:47, Carsten Dominik wrote: > > On 9.9.2013, at 17:41, Nicolas Goaziou wrote: > >> Carsten Dominik writes: >> >>> It is extremely predictable if you know about the structure of an Org >>> document and if you think in elements. >> >> It's a Sexp motion. >> >>> It is unex

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Carsten Dominik
On 9.9.2013, at 17:41, Nicolas Goaziou wrote: > Carsten Dominik writes: > >> It is extremely predictable if you know about the structure of an Org >> document and if you think in elements. > > It's a Sexp motion. > >> It is unexpected for a user who is used to C-arrow doing paragraph >> moti

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Sebastien Vauban
Hello Nicolas, Nicolas Goaziou wrote: > Carsten Dominik writes: > >> It is extremely predictable if you know about the structure of an Org >> document and if you think in elements. > > It's a Sexp motion. > >> It is unexpected for a user who is used to C-arrow doing paragraph >> motion. In Org, o

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Nicolas Goaziou
Carsten Dominik writes: > It is extremely predictable if you know about the structure of an Org > document and if you think in elements. It's a Sexp motion. > It is unexpected for a user who is used to C-arrow doing paragraph > motion. In Org, org-backward-element climbs out if a hierarchy. T

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Nicolas Goaziou
Hello, Bastien writes: > But you got the idea: use `org-forward-element' when moving > within structural elements of various kinds make sense and use > `forward-paragraph' otherwise. No, I still don't get the idea, really. > It is predictable, but sometimes counter-intuitive: for example, wh

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Jambunathan K
> It is extremely predictable if you know about the structure of an Org > document and if you think in elements. Move over the smart navigation to C-M-f and friends. (info "(emacs) Expressions") Programmers among us can exploit it. ---

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Carsten Dominik
On 9.9.2013, at 13:32, Nicolas Goaziou wrote: > Hello, > > Carsten Dominik writes: > >> On 9.9.2013, at 10:38, Bastien wrote: > >>> We could have org-ctrldown and friends the same way we have org-shift* >>> commands. org-ctrldown would use `org-forward-element' when on some >>> Org eleme

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Bastien
Hi Nicolas, Nicolas Goaziou writes: >>> We could have org-ctrldown and friends the same way we have org-shift* >>> commands. org-ctrldown would use `org-forward-element' when on some >>> Org element, and `forward-paragraph' elsewhere. > > "elsewhere" doesn't make sense here since point is _al

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Nicolas Goaziou
Hello, Carsten Dominik writes: > This might be difficult, but not impossible. > I think this might be a question for Nicolas to answer? It boils down to something like: (if (eq (org-element-type (org-element-at-point)) 'src-block) ;; Do forward-paragraph according to language. ..

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Nicolas Goaziou
Hello, Carsten Dominik writes: > On 9.9.2013, at 10:38, Bastien wrote: >> We could have org-ctrldown and friends the same way we have org-shift* >> commands. org-ctrldown would use `org-forward-element' when on some >> Org element, and `forward-paragraph' elsewhere. "elsewhere" doesn't mak

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Carsten Dominik
On 9.9.2013, at 10:38, Bastien wrote: > > > Hi Sébastien, > > "Sebastien Vauban" > writes: > >> Of course, the nicest would be to have both: the current `C-down' for text, >> and the "programmatic" behavior when _in code blocks_. Maybe, that's not >> possible, though... > > We could have o

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Sebastien Vauban
Hi Eric, Eric Schulte wrote: >> not possible anymore to "cut" a code snippet in two parts with C-c C-v C-d >> (demarcate block); already reported (without bisect), no answer; > > This works for me, could you report a minimal recipe for reproduction, and > maybe a git bisect commit? This does work

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Carsten Dominik
On 9.9.2013, at 10:33, "Sebastien Vauban" wrote: > Hi Carsten, > > Carsten Dominik wrote: >> On 9.9.2013, at 10:23, Sebastien Vauban wrote: >>> Carsten Dominik wrote: On 9.9.2013, at 10:11, "Sebastien Vauban" wrote: > Carsten Dominik wrote: >>> - not possible anymore to use C-a o

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Bastien
Hi Sébastien, "Sebastien Vauban" writes: > Of course, the nicest would be to have both: the current `C-down' for text, > and the "programmatic" behavior when _in code blocks_. Maybe, that's not > possible, though... We could have org-ctrldown and friends the same way we have org-shift* comman

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Sebastien Vauban
Hi Carsten, Carsten Dominik wrote: > On 9.9.2013, at 10:23, Sebastien Vauban wrote: >> Carsten Dominik wrote: >>> On 9.9.2013, at 10:11, "Sebastien Vauban" wrote: Carsten Dominik wrote: >> - not possible anymore to use C-a or C-e in code blocks to select >> regions; not reported yet

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Carsten Dominik
On 9.9.2013, at 10:23, Sebastien Vauban wrote: > Hi Carsten, > > Carsten Dominik wrote: >> On 9.9.2013, at 10:11, "Sebastien Vauban" wrote: >>> Carsten Dominik wrote: > - not possible anymore to use C-a or C-e in code blocks to select regions; > not reported yet, though I reported simi

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Sebastien Vauban
Hi Carsten, Carsten Dominik wrote: > On 9.9.2013, at 10:11, "Sebastien Vauban" wrote: >> Carsten Dominik wrote: - not possible anymore to use C-a or C-e in code blocks to select regions; not reported yet, though I reported similar problems with C-arrows (apparently due to a chang

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Carsten Dominik
On 9.9.2013, at 10:11, "Sebastien Vauban" wrote: > Hi Carsten, > > Carsten Dominik wrote: >>> - not possible anymore to use C-a or C-e in code blocks to select regions; >>> not reported yet, though I reported similar problems with C-arrows >>> (apparently due to a change which is now official

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Sebastien Vauban
Hi Carsten, Carsten Dominik wrote: >> - not possible anymore to use C-a or C-e in code blocks to select regions; >> not reported yet, though I reported similar problems with C-arrows >> (apparently due to a change which is now officially part of 8.1). IMO, >> that renders editing of code blo

Re: [O] Outline cycling does not preserve point's position

2013-09-09 Thread Sebastien Vauban
Hi Carsten, Carsten Dominik wrote: > On 7.9.2013, at 21:28, Sebastien Vauban wrote: >> Carsten Dominik wrote: >>> On 7.9.2013, at 14:11, "Sebastien Vauban" wrote: >>> Since a little while, I've observed that point's position is not anymore preserved when cycling buffer's view with S-T

Re: [O] Outline cycling does not preserve point's position

2013-09-08 Thread Carsten Dominik
On 7.9.2013, at 21:28, Sebastien Vauban wrote: > Hi Carsten, > > Carsten Dominik wrote: >> On 7.9.2013, at 14:11, "Sebastien Vauban" wrote: >> >>> Since a little while, I've observed that point's position is not anymore >>> preserved when cycling buffer's view with S-TAB. >>> >>> Sometimes,

Re: [O] Outline cycling does not preserve point's position

2013-09-08 Thread Eric Schulte
> > Not yet. I have many Chinese plates turning at the moment, but I'll try to do > that very soon. And I have other problems to report or bisect: > > - not possible anymore to "cut" a code snippet in two parts with C-c C-v C-d > (demarcate block); already reported (without bisect), no answer; >

Re: [O] Outline cycling does not preserve point's position

2013-09-07 Thread Carsten Dominik
Hi Sebastien, On 7.9.2013, at 21:28, Sebastien Vauban wrote: > Hi Carsten, > > Carsten Dominik wrote: >> On 7.9.2013, at 14:11, "Sebastien Vauban" wrote: >> >>> Since a little while, I've observed that point's position is not anymore >>> preserved when cycling buffer's view with S-TAB. >>> >

Re: [O] Outline cycling does not preserve point's position

2013-09-07 Thread Sebastien Vauban
Hi Carsten, Carsten Dominik wrote: > On 7.9.2013, at 14:11, "Sebastien Vauban" wrote: > >> Since a little while, I've observed that point's position is not anymore >> preserved when cycling buffer's view with S-TAB. >> >> Sometimes, point stays where it was (even when in the body of entries); >>

Re: [O] Outline cycling does not preserve point's position

2013-09-07 Thread Carsten Dominik
Hi Sebastien, you say "since a little while". Have you tried to bisect? Or has it been like this always? Also, I am not convinced that staying in invisible places is the right behavior at all. Even though I would agree that three S-TAB in a row should be a null operation. May be it would be be

[O] Outline cycling does not preserve point's position

2013-09-07 Thread Sebastien Vauban
Hello, Since a little while, I've observed that point's position is not anymore preserved when cycling buffer's view with S-TAB. Sometimes, point stays where it was (even when in the body of entries); sometimes, not. See http://screencast.com/t/1sr6Lezk: - when on the first letter of "From", in