summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-01-29 16:10:48 +0000
committerMaxime Coste <mawww@kakoune.org>2017-01-29 16:10:48 +0000
commit565d835d571d9ceb599c8e421765aecb8efed40a (patch)
tree2d03a5a406382970fab7663f5aa9c1bd22f8e3d2
parent5cb0fb13aa60373de1889ebd0ca4f73235469d25 (diff)
Fix option name in haskell.kak
-rw-r--r--rc/base/haskell.kak2
-rw-r--r--src/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/rc/base/haskell.kak b/rc/base/haskell.kak
index e23b92b5..9f34c617 100644
--- a/rc/base/haskell.kak
+++ b/rc/base/haskell.kak
@@ -57,7 +57,7 @@ def -hidden haskell-indent-on-new-line %{
hook -group haskell-highlight global WinSetOption filetype=haskell %{ add-highlighter ref haskell }
hook global WinSetOption filetype=haskell %{
- set buffer completion_extra_word_chars "'"
+ set buffer completion_extra_word_char "'"
hook window InsertEnd .* -group haskell-hooks haskell-filter-around-selections
hook window InsertChar \n -group haskell-indent haskell-indent-on-new-line
}
diff --git a/src/Makefile b/src/Makefile
index b2186394..1ba5c4d4 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -59,7 +59,7 @@ ifeq ($(static),yes)
LDFLAGS += -static -pthread
endif
-CXXFLAGS += -pedantic -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare -Wno-address
+CXXFLAGS += -pedantic -std=gnu++11 -g -Wall -Wextra -Wno-unused-parameter -Wno-reorder -Wno-sign-compare -Wno-address
all : kak
kak : $(objects)