Hi,
I isntalled evil-mode version 20150511.146 from melpa yesterday. I tried the 
following command line
:%s/get-line/getLine/
As you can see from the attached picture, the last match was not highlighted 
(and not replaced when I hit Enter). I have haskell-mode installed and was 
editing a simple haskell file. Below is the source code. The green text was the 
one missed by the command.
getLines :: (Num a) => [String] -> a -> [String]getLines [] n = []getLines 
xs@(x:_) n  | length xs < n = [] -- Ignore remainder  | otherwise     = 
(get-line (take n xs)) : (getLines (drop n xs))
get-line :: [String] -> Stringget-line [] = "\n"get-line (x:xs) = (show x) + 
"," + (get-line xs)

Best regards,Xiaogang

                                          

Attachment: emacs-evil-mode-replace-missing-last-matchpng
Description: Binary data

_______________________________________________
implementations-list mailing list
[email protected]
https://lists.ourproject.org/cgi-bin/mailman/listinfo/implementations-list

Reply via email to