- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ASCII editor: cut and paste
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 07:47 AM
11-29-2000 07:47 AM
editor that allowed highlighting not only line based but also column
based for cut and paste.
Do you know of any public domain editor with similar features?
Is nedit a possible candidate?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 07:58 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 08:08 AM
11-29-2000 08:08 AM
Re: ASCII editor: cut and paste
Hi:
highlight colums is a capability very extrange, not usual.
I dont know nothing about nedit, but if it is a new version of edit software that i used in a Irmx-86 O.S. there is a very good software. I have saw it for DOS too.
This software lets you hex. edit, octal, macros lenguage and splited windows ( charater mode not WIN).
If it is that sofware, yes i still remember it after 10 years ago.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 01:08 PM
11-29-2000 01:08 PM
Re: ASCII editor: cut and paste
paste to go with it. I find the rectangular cut useful even without
the paste. Perhaps xemacs has them both. If not, and
you know emacs or xemacs lisp, you could implement it
yourself! :-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 01:48 PM
11-29-2000 01:48 PM
Re: ASCII editor: cut and paste
Have a look at the porting arcive or www.nedit.org (i think)
Stefan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 02:09 PM
11-29-2000 02:09 PM
Re: ASCII editor: cut and paste
I think you can do cut and paste across files using vi too. :)
To copy:
To paste
:e the_file_name
Buffer name can be a number or an alphabet.
Generally I use 1 or a.
use dd instead yy if you want to cut paste.
Enjoy !
...Madhu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2000 03:54 PM
12-21-2000 03:54 PM
Re: ASCII editor: cut and paste
for rectangles
To clarify, let's say you have:
123456
abcdefg
and you want to cut out:
234
bcd
and paste it somewhere else.
To cut, set the mark (via CTRL-space) at one corner of the
rectangle you want to cut (in this case, "2"), then move the cursor to
the opposite corner (well, actually one column farther over, "e").
Type "ESC-x kill-rectangle" (the "kill-rectangle" will appear in the
minibuffer line at the bottom of the window). The section you
marked will now be cut out.
Then, move the cursor to the place where you want to
paste, then type "ESC-x yank-rectangle".
Eventually, you'll probably want to bind these commands to
simple keystrokes. I hardly ever use CTRL-t (transpose
characters) or CTRL-l (redraw screen), so I bind them
in my .emacs file as:
(global-set-key "\C-t" 'kill-rectangle)
(global-set-key "\C-l" 'yank-rectangle)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2000 11:55 PM
12-21-2000 11:55 PM
Re: ASCII editor: cut and paste
A good choise if you are used to the power of vi
http://www.vim.org/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2000 06:46 AM
12-22-2000 06:46 AM
Re: ASCII editor: cut and paste
Gregory: I'm not familiar with emacs, I mainly use vi and vim. And, now, I'm starting to like nedit. Thanks for your detailed information.
Tommy: vim does not support rectangular cut and paste like nedit.