2010-09-07から1日間の記事一覧

Telling Maven Integration plugin for Eclipse where Maven installation directory is under Ubuntu

The Maven plugin for Eclipse by default uses an embedded Maven installation which is Maven 3.0. It turns out this has some incompatibilities with Maven 2.x and you are likely better off using Maven 2.x, which is fortunately still the versi…

Vim: Reopen a file with a different encoding

:e! ++enc=utf-8 Reopens current file with UTF-8 encoding :e ++enc=utf-8 filename.txt Opens filename.txt with UTF-8 encodingSee :help encoding-values for a list of supported encodings. Typical ones are latin1, utf-8, euc-jp, sjis, big5.