Messages - jack99999 [ switch to compact view ]

Pages: [1] 2 3 4next
1
i was thinking of an option on the saved formatting dialog, but yes, that would just as well.

thanks

jack

2
is it possible to format the text on the clipboard without pasting? so that i can paste later.

i often use remote sessions on other machines and would find this useful for that. also, i have some autohotkey scripts that process text that is already on the clipboard... CHS can easily do a bit of preprocessing of copied for me, but i don't want to paste the result, just to leave it for the autohotkey scripts.

jack

3
very nice.

i'm not changing though :D

i looked on the web site, just in case there was a free version... i can't see one. and at home i use linux these days and i couldn't see a linux version either.

thanks

jack

4
yes, the  EmEditor looks good there. for real files, would the tabs be varying sizes, to match the length of the file names?

jack

5
yes, i can sympathize with that.

just to make you certain that you'd hate the scripting in my emacs, here's a short function to load many files:

Code: Text [Select]
  1. (defun load-many-files
  2.     (
  3.         ~files (get-tty-file "load all these files:  ")
  4.         ~recursive (get-tty-string "recursive? (y/n) [N] ")
  5.     )
  6.     ~target
  7.    
  8.     (if (= ~recursive "y")
  9.         (setq ~target (expand-file-name-recursive ~files))
  10.         (setq ~target (expand-file-name ~files))
  11.     )                           ; if
  12.     (save-window-excursion
  13.         (while (!= ~target "")
  14.             (visit-file ~target)
  15.             (beginning-of-file)
  16.             (sit-for 0)
  17.            
  18.             (if (= ~recursive "y")
  19.                 (setq ~target (expand-file-name-recursive ""))
  20.                 (setq ~target (expand-file-name ""))
  21.             )                   ; if
  22.            
  23.         )                               ; while
  24.     )                           ; save-window-excursion
  25. )                               ; defun - load-many-files


jack

Pages: [1] 2 3 4next
Go to full version