Skip to content
Snippets Groups Projects
  1. May 02, 2016
  2. May 01, 2016
  3. Mar 16, 2016
  4. Oct 10, 2015
    • Pascal Wittmann's avatar
      emacs mode: match keywords on the start/end of symbols · 5f1a3201
      Pascal Wittmann authored
      If keywords are matched on the start/end of words then
      keywords are also matched if they are surrounded by dashes
      or underscores. For example the keyword with is highlighted
      in geany-with-vte. When matching on the start/end of symbols
      the keyword is only highlighted if it is not part of an other
      identifier.
      5f1a3201
  5. Jul 17, 2015
  6. May 19, 2015
  7. Nov 04, 2014
  8. Sep 17, 2014
    • Robert Helgesson's avatar
      Derive Emacs nix-mode from prog-mode. · eca29bd7
      Robert Helgesson authored
      Emacs 24.1 introduced the notion of "basic major modes" and among these
      is prog-mode, see section "23.2.5 Basic Major Modes" in the Emacs
      manual. The prog-mode basic major mode is recommended as a base for
      derived major modes that are intended for editing source code.
      eca29bd7
  9. Jul 16, 2014
  10. Jun 12, 2014
  11. May 13, 2014
  12. May 02, 2014
  13. Apr 08, 2014
  14. Apr 07, 2014
  15. Feb 01, 2014
  16. Oct 03, 2012
  17. Sep 27, 2012
    • Eelco Dolstra's avatar
      Allow dashes in identifiers · 95c74eae
      Eelco Dolstra authored
      In Nixpkgs, the attribute in all-packages.nix corresponding to a
      package is usually equal to the package name.  However, this doesn't
      work if the package contains a dash, which is fairly common.  The
      convention is to replace the dash with an underscore (e.g. "dbus-lib"
      becomes "dbus_glib"), but that's annoying.  So now dashes are valid in
      variable / attribute names, allowing you to write:
      
        dbus-glib = callPackage ../development/libraries/dbus-glib { };
      
      and
      
        buildInputs = [ dbus-glib ];
      
      Since we don't have a negation or subtraction operation in Nix, this
      is unambiguous.
      95c74eae
  18. May 31, 2012
  19. Aug 06, 2011
  20. Jul 13, 2011
  21. Feb 14, 2011
  22. Jun 18, 2009
  23. Jan 28, 2009
  24. Dec 12, 2007
  25. Dec 10, 2007
  26. Oct 02, 2006
  27. May 12, 2006
  28. Jun 25, 2004
    • Eelco Dolstra's avatar
      * A flag `--keep-going / -k' to keep building goals if one fails, as · b113edea
      Eelco Dolstra authored
        much as possible.  (This is similar to GNU Make's `-k' flag.)
      
      * Refactoring to implement this: previously we just bombed out when
        a build failed, but now we have to clean up.  In particular this
        means that goals must be freed quickly --- they shouldn't hang
        around until the worker exits.  So the worker now maintains weak
        pointers in order not to prevent garbage collection.
      
      * Documented the `-k' and `-j' flags.
        
      b113edea
  29. Jun 20, 2004
  30. Jun 04, 2004
Loading