diff --git a/cfg.nim b/cfg.nim index 939b0d8..fd6f0a8 100644 --- a/cfg.nim +++ b/cfg.nim @@ -20,7 +20,7 @@ proc defaultSettings*(): TSettings = result.wrapAround = true result.font = "Monospace 10" result.outputFont = "Monospace 10" - result.colorSchemeID = "classic" + result.colorSchemeID = "piekno" result.indentWidth = 2 result.showLineNumbers = True result.highlightMatchingBrackets = True diff --git a/readme.markdown b/readme.markdown index 51c6dcd..d0cc8ac 100644 --- a/readme.markdown +++ b/readme.markdown @@ -38,15 +38,22 @@ The GtkSourceView doesn't have an installer, however binaries are available from [here](http://ftp.acc.umu.se/pub/gnome/binaries/win32/gtksourceview/ "GtkSourceView") ([win64](http://ftp.acc.umu.se/pub/gnome/binaries/win64/gtksourceview/ "GtkSourceView")). Just pick the latest version and download the archive then copy the files/folders -in the archive into the directory that gtk is installed in. +in the archive into the 'bin' directory in gtk's directory +(Most likely: ``C:\Program Files\GTK2-Runtime\bin``). #### libxml2-2 GtkSourceView depends on libxml2-2. This should be downloaded from [here](http://ftp.gnome.org/pub/GNOME/binaries/win32/dependencies/ "dependencies") ([win64](http://ftp.gnome.org/pub/GNOME/binaries/win64/dependencies/ "dependencies")). -And the contents of it should be copied to the directory that GTK was installed in. +And the contents of it should be copied the same 'bin' directory as GtkSourceView above. +The zip you are looking for is usually called ``libxml2_2.X.X-1_win32.zip`` #### pcre The dll for this can be found in Nimrod's repo, in the ``"dist"`` directory. Just copy it into aporia's directory or somewhere into your PATH. +#### Microsoft Visual C++ 2010 Redistributable Package (*optional*) +If you are experiencing a ``MSVC100.dll cannot be found`` then you may need to install +the Microsoft Visual C++ 2010 Redistributable Package, this can be downloaded from [here](http://www.microsoft.com/download/en/details.aspx?id=5555) + ([win64](http://www.microsoft.com/download/en/details.aspx?id=14632)) + ### Linux Use your package manager to install the dependencies. ### Mac OS X diff --git a/todo.markdown b/todo.markdown index 91ef5a8..90c759a 100644 --- a/todo.markdown +++ b/todo.markdown @@ -13,6 +13,7 @@ * Caused by a GtkSourceView from a tab other than the current one being focused. * Use the same strategy as scrolling for making sure that the selected tab gets focused. * Search for ⌚, it selects too much with regex. +* Move "Find", "Go to line" etc. to a "Search" menu in the top bar. ## Other language features * Ability to change to hard tabs.