drewda / cucumber-sublime-bundle

Sublime bundle for Cucumber
65 stars 26 forks source link

`ALT` + `;` does nothing on Windows #33

Open leegee opened 8 years ago

leegee commented 8 years ago

Downloaded with Package Control. Restarted Selected this text:

  Examples: 
    | STRING                 | COLUMN NAME                   | 
    | TR.FloatPercent        | Float Percent                 |  
    | TR.Price52WeekHighDate | Date of Price - 52 Week High  |  
    | TR.TotalAssetsActual   | Total Assets                  | 
    | CF_CURR                | Currency                      |  
    | BID                    | Bid                           |  
    | VOLUME                 | Volume                        |

Held ALT key and pressed ; key.

Nothing happened.

drewda commented 8 years ago

I don't have a Windows machine, and cannot help debug. But hopefully if we leave this issue open, another users of the library can reproduce or offer suggestions.

hugofcampos commented 8 years ago

In MacOS, alt+'+' produces the '≠' char. Is there any way to change this shortcut?

zpan commented 8 years ago

@hugofcampos use alt + ; , not alt+'+'

endash commented 7 years ago

For anyone who comes across this on OS X: Table cleaner wasn't working for me because it was running the script with Python 3. Rather than figure out how to get it to use Python 2, I just gsubbed xrange with range and next() with __next__() in the source. YMMV.