Sublime Forum

Virtual space

#13

Another vote for the “virtual space” - it is essential feature for me to seriously consider purchasing Sublime, which really appeals to my nerdiness.

0 Likes

#14

Support for virtual space will not be added to Sublime Text 2, however it may appear in a future major version (3+).

1 Like

#15

I just realized how much easier writing ascii tables would be with virtual space, and then I got an inkling of its power; therefore I heartily +1 this request!

0 Likes

#16

Yet another vote for virtual space. This combined with visual block mode ctrl+v would be “sublime”.

0 Likes

Block selection: insert not as expected
#17

Just received a reply to my question over here linking to this thread… count me in with +1. Sad to hear that excellent feature doesn’t exist and won’t make it into ST any time soon.

What about plugins… could this feature be implemented that way?

cheers,
Jan

0 Likes

#18

Yeah, you could make a plugin that inserts the appropriate number of spaces.

0 Likes

#19

Yet another vote for virtual space:)

0 Likes

#20

Just adding another vote for virtual space. I have been looking forward to sitting down and evaluating Sublime Text 2. It sounded like a dream, one licence for Windows, Mac and Linux (I use all three). Fully configurable with Python. A pure programmer’s editor. My initial impression was great, but then … ahhhhhh … as I down arrow I don’t stay in the same column unless I am lucky enough that all lines below my start point are at least as long as my initial column position. Worse (much worse) was to follow. There is no way to change this horrible behaviour ! I am really struggling to believe this can be true. I believe I escaped from this primitive mode of operation for the first time with the Brief MS-DOS editor way back in the eighties. This is so fundamental. It’s the difference between interacting with your code as a fluid representation of abstract ideas (good) versus interacting with your code as a list of jagged lines of text (bad - very very bad).

Edit later: Having another go today and I notice that if I go down down down down etc. the column change that occurs if I hit a short line is only temporary - if I reach a sufficiently long line the column position will revert to my original starting place. This is good and reduces my grief for the absent virtual space feature significantly.

0 Likes

#21

this is a reworked version of a command i used for some time.
it does address the problem @gpfsmurf had.
it’s improved version of Sublime’s “Add next/previous” line in that respect that it expands the selection by placing the new region in the same column even if the line is shorter.
It also solves one annoyance i had with sel placement i tried to explain here http://sublimetext.userecho.com/topic/123237-correct-add-nextprevious-line-behaviour/
i hope someone might find it useful.

[quote=“gpfsmurf”]Current:

blah blahb|lah
|
asdhasdklj|dhaslkhdsalk
daskhask|
1237912623|9871263129836913

Proposed:

blah blahb|lah
          |
asdhasdklj|dhaslkhdsalk
daskhask  |
1237912263|9871263129836913

I can see uses for both behaviors, so having this as an option would be nice to have.[/quote]

0 Likes

#22

Another vote for virtual space. My daily IDE has virtual space. I use sublime text for everything else. Virtual space is not a make or break feature for me but it would be very awesome to have in Sublime Text. It sounds like a small feature, but once you’ve grown accustomed to it, it’s hard to go back.

0 Likes

#23

April 2017, apparently this feature is still not there.
One of the few that prevent me from completely adopting ST3…

0 Likes

#24
0 Likes

#25

:+1: Essential text editor feature, hope it gets implemented

I’m checking out sublime text atm but having to go back because of this (for now!)

0 Likes

#26

I’m also interested in this. I found this plugin that could be helpful

https://packagecontrol.io/packages/Equalize

Is there a way to access the clipboard and modify it on the fly, to strip trailing whitespaces copied from a such a selection?

0 Likes

#27

Yes, there are get_clipboard and set_clipboard methods in the sublime module.

As an example, I wrote this plugin for someone that wanted something similar.

In the example, the idea is copying results from a Find in Files result, automatically throwing away the line numbers at the start. However you could easily swap the regex for one that strips trailing white space.

0 Likes

#28

Cool, thanks!

0 Likes

#29

I also vote for the virtual space

0 Likes

#30

I advocate for this feature. It would be most useful to me when creating markdown tables and for documenting source code.

0 Likes

#31

Just made a plugin for this, some feedback would be appreciated, thanks.

1 Like

#32

Your plugin looks great!

Is it possible to modify it to edit document in Virtual Space mode (to set cursor anywhere beyound the end of line)? …

0 Likes