Results 80 comments of jrun

```//``` will get me into 'INSERT' if you like so i can type. same with ```o``` and ```t```.

so something like this: ``` [debug] got 8 suggestions [debug] main { "word":"tu", "menu":"you" } [debug] main { "word":"toujours", "menu":"always" } [debug] main { "word":"tu fais quoi dans la vie",...

please have look at this: [https://github.com/257/gtr](https://github.com/257/gtr) to compile and run you would need json-c from their git repo. then you can do: ```./json_parser t``` and it will return: ``` {...

i already use those here: [https://github.com/257/cm_sources/blob/master/trans.py](https://github.com/257/cm_sources/blob/master/trans.py) my question, i think, comes down to, what is acceptable Dictionary format? there is vim dictionary which i think would be like: ``` {'foo':...

done! thanks. FYI! [https://github.com/257/cm_sources/blob/master/trans.py](https://github.com/257/cm_sources/blob/master/trans.py) [https://github.com/257/gtr](https://github.com/257/gtr)

oh, and if i could include everything from the last '.' (period) in what i send to my google-translate client i would be nice too. i believe one of these...

i mean something like: ``` word_pattern=r'[.]\s.*' ``` but that in particular doesn't work. in fact it includes the closing period '.' from the previous sentence which is not what we...

in a buffer with only this string ```salut. je compren ``` this regex ```\.\s\zs.*\.\ze``` matches ```je compren``` which is what i want. now how do i pass that to cm?...

i tried with ```ctx['typed']```, ```word_pattern``` and proper PCRE regex for ```cm_refresh_patterns=[r'(\.|^)?.*?$\.']``` but i can't get cm to send over the complete sentence. say i have a buffer like this ```...

thanks, it's working now. i had to modify my client a bit. now i have another problem! {context} get outdated. i think it's because of space between ```je``` and ```comp```....