Created
June 18, 2010 18:30
Revisions
-
tyru revised this gist
Jun 18, 2010 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -38,8 +38,8 @@ endfunction function! s:get_current_character() if mode() ==# 'c' let str = getcmdline() let cur_idx = getcmdpos() - 1 elseif mode() ==# 'n' let str = getline('.') let cur_idx = col('.') - 1 -
tyru revised this gist
Jun 18, 2010 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -27,13 +27,13 @@ function! s:get_current_and_next_index(str, cur_idx) let cur_idx = a:cur_idx let str = a:str let end_idx = cur_idx + 1 while s:is_trail_char(str[end_idx]) let end_idx += 1 endwhile " NOTE: `cur_idx` is always first index. return [cur_idx, end_idx] endfunction function! s:get_current_character() -
tyru revised this gist
Jun 18, 2010 . 1 changed file with 2 additions and 6 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -27,17 +27,13 @@ function! s:get_current_and_next_index(str, cur_idx) let cur_idx = a:cur_idx let str = a:str let endcol = cur_idx + 1 while s:is_trail_char(str[endcol]) let endcol += 1 endwhile " NOTE: `cur_idx` is always first index. return [cur_idx, endcol] endfunction function! s:get_current_character() -
tyru revised this gist
Jun 18, 2010 . 1 changed file with 3 additions and 5 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -44,17 +44,15 @@ function! s:get_current_character() if mode() ==# 'c' let str = getcmdline('.') let cur_idx = getcmdpos('.') - 1 elseif mode() ==# 'n' let str = getline('.') let cur_idx = col('.') - 1 else echoerr 'not supported' endif let [begin, end] = s:get_current_and_next_index(str, cur_idx) return strpart(str, begin, end - begin) endfunction echom s:get_current_character() -
tyru renamed this gist
Jun 18, 2010 . 1 changed file with 5 additions and 3 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -41,9 +41,11 @@ function! s:get_current_and_next_index(str, cur_idx) endfunction function! s:get_current_character() if mode() ==# 'c' let str = getcmdline('.') let cur_idx = getcmdpos('.') - 1 let [begin, end] = s:get_current_and_next_index(str, cur_idx) return strpart(str, begin, end - begin) elseif mode() ==# 'n' let str = getline('.') let cur_idx = col('.') - 1 -
tyru created this gist
Jun 18, 2010 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,58 @@ " For test (Do quickrun on the target character!): " aiu " あいう function! s:char2bits(char) let bits = map(range(8), '0') let cur_keta = len(bits) - 1 let nr = char2nr(a:char) while cur_keta >= 0 let cur_num = float2nr(pow(2, cur_keta)) if nr >= cur_num let nr -= cur_num let bits[cur_keta] = 1 endif let cur_keta -= 1 endwhile return reverse(bits) endfunction function! s:is_trail_char(char) let bits = s:char2bits(a:char) return bits[0] && !bits[1] endfunction function! s:get_current_and_next_index(str, cur_idx) let cur_idx = a:cur_idx let str = a:str let firstcol = cur_idx while s:is_trail_char(str[firstcol]) let firstcol -= 1 endwhile let endcol = cur_idx + 1 while s:is_trail_char(str[endcol]) let endcol += 1 endwhile return [firstcol, endcol] endfunction function! s:get_current_character() if 0 " if mode() ==# 'c' " let char = getcmdline('.')[getcmdpos()-1] elseif mode() ==# 'n' let str = getline('.') let cur_idx = col('.') - 1 let [begin, end] = s:get_current_and_next_index(str, cur_idx) return strpart(str, begin, end - begin) else echoerr 'not supported' endif return char endfunction echom s:get_current_character()