Vim Advent Calendar 2012の102日目(2013-03-12)の記事です。
-
W,E,BでのWORD移動を文節単位にする jasegment.vimを作りました。
| func loopTrack(musicTrack:MusicTrack) { | |
| var trackLength = getTrackLength(musicTrack) | |
| println("track length is \(trackLength)") | |
| setTrackLoopDuration(musicTrack, duration: trackLength) | |
| } | |
| func getTrackLength(musicTrack:MusicTrack) -> MusicTimeStamp { | |
| //The time of the last music event in a music track, plus time required for note fade-outs and so on. |
| git fetch --all | |
| git reset --hard origin/master | |
| git pull origin master |
Vim Advent Calendar 2012の102日目(2013-03-12)の記事です。
W,E,BでのWORD移動を文節単位にする jasegment.vimを作りました。
| $ curl -O ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.9.tar.gz | |
| $ tar -xzvf ncurses-5.9.tar.gz | |
| $ cd ./ncurses-5.9 | |
| $ ./configure --prefix=/usr/local \ | |
| --without-cxx --without-cxx-binding --without-ada --without-progs --without-curses-h \ | |
| --with-shared --without-debug \ | |
| --enable-widec --enable-const --enable-ext-colors --enable-sigwinch --enable-wgetch-events \ | |
| && make | |
| $ sudo make install |
| // | |
| // KBNetworkActivityIndicator.h | |
| // Kobov3 | |
| // | |
| // Created by Jim Dovey on 10-03-21. | |
| // Copyright 2010 Kobo Inc. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> |