meho_r wrote:@frabjous: if you manage to get it working on Ubuntu, please, let us know

...should probably start a new thread since this has nothing to do with Windows anymore, but since you asked I just got it working on Kubuntu 10.04 (which I just installed the other day) by buiding Kile 2.1 beta 4 from source.

- spellcheck.png (67.04 KiB) Viewed 6670 times
Another great thing is that I also got forward/reverse search working using SyncTeX with PDFs in Okular following the advice
here, except that the python script given there wasn't working quite right, so I wrote a bash script that does the same.
Code: Select all
#!/bin/bash
first=`echo $1 | sed -e 's@file:@@g'`
second=`echo $2 | sed -e 's@\./@@g'`
okular --unique "$first$second" &
(...named okular_fs.sh and subbed in for okular_fs.py in the instructions...)
Pretty cool. This may cause me to abandon TeXworks and go back to Kile!