Do you know of any text editors that are dual paned?
up vote
2
down vote
favorite
.. so I can text side by side without opening many instances?
Thanks!
software-recommendation text-editor
|
show 1 more comment
up vote
2
down vote
favorite
.. so I can text side by side without opening many instances?
Thanks!
software-recommendation text-editor
4
Try Visual Studio Code.
– Michal Przybylowicz
Sep 3 at 2:33
1
ubuntuforums.org/showthread.php?t=1668071 unix.stackexchange.com/questions/44523/…
– DK Bose
Sep 3 at 2:38
1
I googled for 'dual-pane text editor linux'.
– DK Bose
Sep 3 at 2:51
1
emacscan split it's screen horizontally, vertically, both, ... . However, as I recall, there is a significant learning curve.
– waltinator
Sep 3 at 5:04
1
You could try ultra edit or 7edit. I do believe they both have that functionality.
– Femina Jaffer
Sep 3 at 13:10
|
show 1 more comment
up vote
2
down vote
favorite
up vote
2
down vote
favorite
.. so I can text side by side without opening many instances?
Thanks!
software-recommendation text-editor
.. so I can text side by side without opening many instances?
Thanks!
software-recommendation text-editor
software-recommendation text-editor
asked Sep 3 at 2:28
peteubuntu
1181211
1181211
4
Try Visual Studio Code.
– Michal Przybylowicz
Sep 3 at 2:33
1
ubuntuforums.org/showthread.php?t=1668071 unix.stackexchange.com/questions/44523/…
– DK Bose
Sep 3 at 2:38
1
I googled for 'dual-pane text editor linux'.
– DK Bose
Sep 3 at 2:51
1
emacscan split it's screen horizontally, vertically, both, ... . However, as I recall, there is a significant learning curve.
– waltinator
Sep 3 at 5:04
1
You could try ultra edit or 7edit. I do believe they both have that functionality.
– Femina Jaffer
Sep 3 at 13:10
|
show 1 more comment
4
Try Visual Studio Code.
– Michal Przybylowicz
Sep 3 at 2:33
1
ubuntuforums.org/showthread.php?t=1668071 unix.stackexchange.com/questions/44523/…
– DK Bose
Sep 3 at 2:38
1
I googled for 'dual-pane text editor linux'.
– DK Bose
Sep 3 at 2:51
1
emacscan split it's screen horizontally, vertically, both, ... . However, as I recall, there is a significant learning curve.
– waltinator
Sep 3 at 5:04
1
You could try ultra edit or 7edit. I do believe they both have that functionality.
– Femina Jaffer
Sep 3 at 13:10
4
4
Try Visual Studio Code.
– Michal Przybylowicz
Sep 3 at 2:33
Try Visual Studio Code.
– Michal Przybylowicz
Sep 3 at 2:33
1
1
ubuntuforums.org/showthread.php?t=1668071 unix.stackexchange.com/questions/44523/…
– DK Bose
Sep 3 at 2:38
ubuntuforums.org/showthread.php?t=1668071 unix.stackexchange.com/questions/44523/…
– DK Bose
Sep 3 at 2:38
1
1
I googled for 'dual-pane text editor linux'.
– DK Bose
Sep 3 at 2:51
I googled for 'dual-pane text editor linux'.
– DK Bose
Sep 3 at 2:51
1
1
emacs can split it's screen horizontally, vertically, both, ... . However, as I recall, there is a significant learning curve.– waltinator
Sep 3 at 5:04
emacs can split it's screen horizontally, vertically, both, ... . However, as I recall, there is a significant learning curve.– waltinator
Sep 3 at 5:04
1
1
You could try ultra edit or 7edit. I do believe they both have that functionality.
– Femina Jaffer
Sep 3 at 13:10
You could try ultra edit or 7edit. I do believe they both have that functionality.
– Femina Jaffer
Sep 3 at 13:10
|
show 1 more comment
4 Answers
4
active
oldest
votes
up vote
5
down vote
From my personal experience I can recommend to use Kate (sudo apt-get install kate) - it has many options in View → Split View:

Also you can try JEdit (sudo apt-get install jedit), it allows to have splits in View → Splitting:

or Notepadqq (sudo add-apt-repository ppa:notepadqq-team/notepadqq, sudo apt-get update, sudo apt-get install notepadqq), it has View → Move/Clone Current Document → Move to Other View option:

or JuffEd (sudo apt-get install juffed-plugins), it has Move to the right panel and Move to the left panel:

I haven't tried Kate but I hear it is top heavy. I'll give it a try, thanks.
– peteubuntu
Sep 3 at 12:22
add a comment |
up vote
4
down vote
Another option is Geany, available in the repositories.
Under Tools, click on Plugin Manager and enable Split Windows. The plugin for enabling split windows comes pre-installed.

You'll see the Split Window option under Tools.

And that's it. Of course, you can choose between horizontal and vertical and drag the splitter to resize panes.

Geany, in 18.04, is a gtk3 application and in 16.04, a gtk2 application. So, if your distro is "GNOME-based", you may prefer it as it pulls in very few dependencies.
Thank you, I tried geany and liked it but I settled for bluefish as it was a lot more customization. It does have split screen but not sure if that worked however it suited me in different ways. Thank you for your suggestion!
– peteubuntu
Sep 3 at 12:24
add a comment |
up vote
2
down vote
Atom

Atom is a nice text editor packed with lots of powerful features and extension support, entirely written using Node JS and web technologies.
add a comment |
up vote
1
down vote

Can be done in vim. They are called windows (:help windows)
Open new file vertically with :vsplit /path/to/file :vs for short. Use only :vs to open the current buffer in another window (so you can look at the same file in another place)
Open horizontally with :split /path/to/file :sp for short. Using only :sp will open the same file but horizontally
Ctrl-w will cycle through the open windows. :bn will change to the next buffer in a window. (:bp will go to the previous buffer)
To close the active window :close
To dig deeper :help close, :help split, or :help any-command will open the help file in a new window and you can read more about them (:close will close the open window ;) )
How to close vim from the command line? (For the uninitiated.)
Note: The "Tab list" on the top is from the airline plugin with the code below added to my .vimrc
let g:airline#extensions#tabline#enabled = 1 " Enable the list of buffers
add a comment |
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
5
down vote
From my personal experience I can recommend to use Kate (sudo apt-get install kate) - it has many options in View → Split View:

Also you can try JEdit (sudo apt-get install jedit), it allows to have splits in View → Splitting:

or Notepadqq (sudo add-apt-repository ppa:notepadqq-team/notepadqq, sudo apt-get update, sudo apt-get install notepadqq), it has View → Move/Clone Current Document → Move to Other View option:

or JuffEd (sudo apt-get install juffed-plugins), it has Move to the right panel and Move to the left panel:

I haven't tried Kate but I hear it is top heavy. I'll give it a try, thanks.
– peteubuntu
Sep 3 at 12:22
add a comment |
up vote
5
down vote
From my personal experience I can recommend to use Kate (sudo apt-get install kate) - it has many options in View → Split View:

Also you can try JEdit (sudo apt-get install jedit), it allows to have splits in View → Splitting:

or Notepadqq (sudo add-apt-repository ppa:notepadqq-team/notepadqq, sudo apt-get update, sudo apt-get install notepadqq), it has View → Move/Clone Current Document → Move to Other View option:

or JuffEd (sudo apt-get install juffed-plugins), it has Move to the right panel and Move to the left panel:

I haven't tried Kate but I hear it is top heavy. I'll give it a try, thanks.
– peteubuntu
Sep 3 at 12:22
add a comment |
up vote
5
down vote
up vote
5
down vote
From my personal experience I can recommend to use Kate (sudo apt-get install kate) - it has many options in View → Split View:

Also you can try JEdit (sudo apt-get install jedit), it allows to have splits in View → Splitting:

or Notepadqq (sudo add-apt-repository ppa:notepadqq-team/notepadqq, sudo apt-get update, sudo apt-get install notepadqq), it has View → Move/Clone Current Document → Move to Other View option:

or JuffEd (sudo apt-get install juffed-plugins), it has Move to the right panel and Move to the left panel:

From my personal experience I can recommend to use Kate (sudo apt-get install kate) - it has many options in View → Split View:

Also you can try JEdit (sudo apt-get install jedit), it allows to have splits in View → Splitting:

or Notepadqq (sudo add-apt-repository ppa:notepadqq-team/notepadqq, sudo apt-get update, sudo apt-get install notepadqq), it has View → Move/Clone Current Document → Move to Other View option:

or JuffEd (sudo apt-get install juffed-plugins), it has Move to the right panel and Move to the left panel:

edited Nov 12 at 19:11
mook765
3,24221022
3,24221022
answered Sep 3 at 8:49
N0rbert
19k54088
19k54088
I haven't tried Kate but I hear it is top heavy. I'll give it a try, thanks.
– peteubuntu
Sep 3 at 12:22
add a comment |
I haven't tried Kate but I hear it is top heavy. I'll give it a try, thanks.
– peteubuntu
Sep 3 at 12:22
I haven't tried Kate but I hear it is top heavy. I'll give it a try, thanks.
– peteubuntu
Sep 3 at 12:22
I haven't tried Kate but I hear it is top heavy. I'll give it a try, thanks.
– peteubuntu
Sep 3 at 12:22
add a comment |
up vote
4
down vote
Another option is Geany, available in the repositories.
Under Tools, click on Plugin Manager and enable Split Windows. The plugin for enabling split windows comes pre-installed.

You'll see the Split Window option under Tools.

And that's it. Of course, you can choose between horizontal and vertical and drag the splitter to resize panes.

Geany, in 18.04, is a gtk3 application and in 16.04, a gtk2 application. So, if your distro is "GNOME-based", you may prefer it as it pulls in very few dependencies.
Thank you, I tried geany and liked it but I settled for bluefish as it was a lot more customization. It does have split screen but not sure if that worked however it suited me in different ways. Thank you for your suggestion!
– peteubuntu
Sep 3 at 12:24
add a comment |
up vote
4
down vote
Another option is Geany, available in the repositories.
Under Tools, click on Plugin Manager and enable Split Windows. The plugin for enabling split windows comes pre-installed.

You'll see the Split Window option under Tools.

And that's it. Of course, you can choose between horizontal and vertical and drag the splitter to resize panes.

Geany, in 18.04, is a gtk3 application and in 16.04, a gtk2 application. So, if your distro is "GNOME-based", you may prefer it as it pulls in very few dependencies.
Thank you, I tried geany and liked it but I settled for bluefish as it was a lot more customization. It does have split screen but not sure if that worked however it suited me in different ways. Thank you for your suggestion!
– peteubuntu
Sep 3 at 12:24
add a comment |
up vote
4
down vote
up vote
4
down vote
Another option is Geany, available in the repositories.
Under Tools, click on Plugin Manager and enable Split Windows. The plugin for enabling split windows comes pre-installed.

You'll see the Split Window option under Tools.

And that's it. Of course, you can choose between horizontal and vertical and drag the splitter to resize panes.

Geany, in 18.04, is a gtk3 application and in 16.04, a gtk2 application. So, if your distro is "GNOME-based", you may prefer it as it pulls in very few dependencies.
Another option is Geany, available in the repositories.
Under Tools, click on Plugin Manager and enable Split Windows. The plugin for enabling split windows comes pre-installed.

You'll see the Split Window option under Tools.

And that's it. Of course, you can choose between horizontal and vertical and drag the splitter to resize panes.

Geany, in 18.04, is a gtk3 application and in 16.04, a gtk2 application. So, if your distro is "GNOME-based", you may prefer it as it pulls in very few dependencies.
answered Sep 3 at 11:51
DK Bose
11.8k113781
11.8k113781
Thank you, I tried geany and liked it but I settled for bluefish as it was a lot more customization. It does have split screen but not sure if that worked however it suited me in different ways. Thank you for your suggestion!
– peteubuntu
Sep 3 at 12:24
add a comment |
Thank you, I tried geany and liked it but I settled for bluefish as it was a lot more customization. It does have split screen but not sure if that worked however it suited me in different ways. Thank you for your suggestion!
– peteubuntu
Sep 3 at 12:24
Thank you, I tried geany and liked it but I settled for bluefish as it was a lot more customization. It does have split screen but not sure if that worked however it suited me in different ways. Thank you for your suggestion!
– peteubuntu
Sep 3 at 12:24
Thank you, I tried geany and liked it but I settled for bluefish as it was a lot more customization. It does have split screen but not sure if that worked however it suited me in different ways. Thank you for your suggestion!
– peteubuntu
Sep 3 at 12:24
add a comment |
up vote
2
down vote
Atom

Atom is a nice text editor packed with lots of powerful features and extension support, entirely written using Node JS and web technologies.
add a comment |
up vote
2
down vote
Atom

Atom is a nice text editor packed with lots of powerful features and extension support, entirely written using Node JS and web technologies.
add a comment |
up vote
2
down vote
up vote
2
down vote
Atom

Atom is a nice text editor packed with lots of powerful features and extension support, entirely written using Node JS and web technologies.
Atom

Atom is a nice text editor packed with lots of powerful features and extension support, entirely written using Node JS and web technologies.
answered Sep 3 at 16:16
Helio
5,09432750
5,09432750
add a comment |
add a comment |
up vote
1
down vote

Can be done in vim. They are called windows (:help windows)
Open new file vertically with :vsplit /path/to/file :vs for short. Use only :vs to open the current buffer in another window (so you can look at the same file in another place)
Open horizontally with :split /path/to/file :sp for short. Using only :sp will open the same file but horizontally
Ctrl-w will cycle through the open windows. :bn will change to the next buffer in a window. (:bp will go to the previous buffer)
To close the active window :close
To dig deeper :help close, :help split, or :help any-command will open the help file in a new window and you can read more about them (:close will close the open window ;) )
How to close vim from the command line? (For the uninitiated.)
Note: The "Tab list" on the top is from the airline plugin with the code below added to my .vimrc
let g:airline#extensions#tabline#enabled = 1 " Enable the list of buffers
add a comment |
up vote
1
down vote

Can be done in vim. They are called windows (:help windows)
Open new file vertically with :vsplit /path/to/file :vs for short. Use only :vs to open the current buffer in another window (so you can look at the same file in another place)
Open horizontally with :split /path/to/file :sp for short. Using only :sp will open the same file but horizontally
Ctrl-w will cycle through the open windows. :bn will change to the next buffer in a window. (:bp will go to the previous buffer)
To close the active window :close
To dig deeper :help close, :help split, or :help any-command will open the help file in a new window and you can read more about them (:close will close the open window ;) )
How to close vim from the command line? (For the uninitiated.)
Note: The "Tab list" on the top is from the airline plugin with the code below added to my .vimrc
let g:airline#extensions#tabline#enabled = 1 " Enable the list of buffers
add a comment |
up vote
1
down vote
up vote
1
down vote

Can be done in vim. They are called windows (:help windows)
Open new file vertically with :vsplit /path/to/file :vs for short. Use only :vs to open the current buffer in another window (so you can look at the same file in another place)
Open horizontally with :split /path/to/file :sp for short. Using only :sp will open the same file but horizontally
Ctrl-w will cycle through the open windows. :bn will change to the next buffer in a window. (:bp will go to the previous buffer)
To close the active window :close
To dig deeper :help close, :help split, or :help any-command will open the help file in a new window and you can read more about them (:close will close the open window ;) )
How to close vim from the command line? (For the uninitiated.)
Note: The "Tab list" on the top is from the airline plugin with the code below added to my .vimrc
let g:airline#extensions#tabline#enabled = 1 " Enable the list of buffers

Can be done in vim. They are called windows (:help windows)
Open new file vertically with :vsplit /path/to/file :vs for short. Use only :vs to open the current buffer in another window (so you can look at the same file in another place)
Open horizontally with :split /path/to/file :sp for short. Using only :sp will open the same file but horizontally
Ctrl-w will cycle through the open windows. :bn will change to the next buffer in a window. (:bp will go to the previous buffer)
To close the active window :close
To dig deeper :help close, :help split, or :help any-command will open the help file in a new window and you can read more about them (:close will close the open window ;) )
How to close vim from the command line? (For the uninitiated.)
Note: The "Tab list" on the top is from the airline plugin with the code below added to my .vimrc
let g:airline#extensions#tabline#enabled = 1 " Enable the list of buffers
answered Nov 12 at 16:50
chaptuck
604617
604617
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1071512%2fdo-you-know-of-any-text-editors-that-are-dual-paned%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
4
Try Visual Studio Code.
– Michal Przybylowicz
Sep 3 at 2:33
1
ubuntuforums.org/showthread.php?t=1668071 unix.stackexchange.com/questions/44523/…
– DK Bose
Sep 3 at 2:38
1
I googled for 'dual-pane text editor linux'.
– DK Bose
Sep 3 at 2:51
1
emacscan split it's screen horizontally, vertically, both, ... . However, as I recall, there is a significant learning curve.– waltinator
Sep 3 at 5:04
1
You could try ultra edit or 7edit. I do believe they both have that functionality.
– Femina Jaffer
Sep 3 at 13:10