This project is a fork of the rxvt-unicode-script-mark-and-yank.git project. If you have that one already cloned locally, you can use
git clone --reference /path/to/your/rxvt-unicode-script-mark-and-yank.git/incarnation mirror_URL
to save bandwidth during cloning.
 
descriptionMiciah's changes
ownermiciah.masters@gmail.com
last changeSat, 27 Jun 2009 01:00:53 +0000 (27 01:00 +0000)
content tags
add:
README
Blog'ed http://www.jukie.net/~bart/blog/tag/urxvt

Contributing
  
  If you find any of this interesting, you may want to create a fork
  on github.  http://github.com/bartman/urxvt-scripts

Main author
  Bart Trojanowski <bart@jukie.net>

Contributors
  Miciah Dashiel Butler Masters
  Nigel McNie
  Jonas Kramer
  Olof Johansson
  Dave O'Neill
  Hans Dieter Pearcey
  Daniel Danner
  << your name here >>

mark-yank-urls
  
  This script will cycle through URLs in the terminal and let you 
  copy them (y) or launch a browser (<enter>).

  This script is known to be working, but is likely not bug-free.

  NOTES:
    apt-get install rxvt-unicode xclip git-core
    git clone git://git.jukie.net/urxvt.git/ urxvt.git
    mkdir -p ~/.urxvt
    cp urxvt.git/mark-yank-urls ~/.urxvt

    cat >> ~/.Xdefaults <<END
URxvt.keysym.M-u: perl:mark-yank-urls:activate_mark_mode
URxvt.reverseVideo: true
URxvt.perl-lib: /home/jukie/bart/.urxvt/
URxvt.perl-ext: selection
URxvt.perl-ext: mark-yank-urls
END

mark-and-yank

  This is a general purpose block copy script.  Alt-u emulates the
  mark-yank-urls script.  Alt-y is intended to work like the GNU screen
  copy mode.

  WARNING, there are still many bugs in this script.

  NOTES:
    apt-get install rxvt-unicode xclip git-core
    git clone git://git.jukie.net/urxvt.git/ urxvt.git
    mkdir -p ~/.urxvt
    cp urxvt.git/mark-and-yank ~/.urxvt

    cat >> ~/.Xdefaults <<END
URxvt.keysym.M-y: perl:mark-and-yank:activate_mark_mode
URxvt.keysym.M-u: perl:mark-and-yank:activate_mark_url_mode
URxvt.perl-lib: /home/jukie/bart/.urxvt/
URxvt.perl-ext: mark-and-yank
URxvt.urlLauncher: firefox
END

  TODO:
    - get rid of globals, use $term->{variable}s
    - whole screen capture
    - b,e,w,W,gg,G for movement
    - merge code with improvements made to mark-yank-urls
shortlog
2009-06-27 Miciah Dashiel... Drop extra escaping of copied textmiciah
2009-06-24 Miciah Dashiel... Use open() instead of system() to run xclip
2009-06-24 Miciah Dashiel... Merge commit 'origin/master' into miciah
2009-06-24 Miciah Dashiel... Make global state variables in $term object
2009-06-24 Miciah Dashiel... Add block selection (^v)
2009-06-21 Miciah Dashiel... Delete a commented out definition of %mod
2009-06-16 Jyrki PulliainenMark-yank-urls and Ctrl detection
2009-06-01 Bart Trojanowskimore README updates
2009-06-01 Bart TrojanowskiREADME updates
2009-05-31 Bart Trojanowskifix README to point to new git server
2009-05-31 Bart Trojanowskirevert changes to url_matches lost in last couple of...
2009-05-31 Jonas KramerMade use of Regexp::Common optional.
2009-05-31 Jonas KramerUsing Regexp::Common for URL matching, fixed quotes...
2009-05-31 Bart Trojanowskicomments for mark-yank-urls
2009-05-31 Olof Johanssonmake links w/o protocol work
2009-05-31 Bart Trojanowskimark-yank-urls: fix bug allowing shell to interpret...
...
heads
15 years ago miciah