yi-0.8.0: src/library/Yi/TextCompletion.hs
{-# LANGUAGE DeriveDataTypeable, GeneralizedNewtypeDeriving #-}
-- Copyright (C) 2008 JP Bernardy
module Yi.TextCompletion (
-- * Word completion
wordComplete,
wordComplete',
wordCompleteString,
wordCompleteString',
mkWordComplete,
resetComplete,
completeWordB,
CompletionScope(..)
) where
import Yi.Completion
import Control.Applicative
import Control.Monad
import Data.Char
import Data.List (isPrefixOf, findIndex, groupBy)
import Data.Maybe
import Data.Default
import Data.Function (on)
import Data.Typeable
import Data.Binary
import Yi.Core
import Yi.Utils
-- ---------------------------------------------------------------------
-- | Word completion
--
-- when doing keyword completion, we need to keep track of the word
-- we're trying to complete.
newtype Completion = Completion
-- Point -- beginning of the thing we try to complete
[String] -- the list of all possible things we can complete to.
-- (this seems very inefficient; but we use lazyness to our advantage)
deriving (Typeable, Binary)
-- TODO: put this in keymap state instead
instance Default Completion where
def = Completion []
instance YiVariable Completion
-- | Switch out of completion mode.
resetComplete :: EditorM ()
resetComplete = setDynamic (Completion [])
-- | Try to complete the current word with occurences found elsewhere in the
-- editor. Further calls try other options.
mkWordComplete :: YiM String -> (String -> YiM [String]) -> ([String] -> YiM () ) -> (String -> String -> Bool) -> YiM String
mkWordComplete extractFn sourceFn msgFn predMatch = do
Completion complList <- withEditor getDynamic
case complList of
(x:xs) -> do -- more alternatives, use them.
msgFn (x:xs)
withEditor $ setDynamic (Completion xs)
return x
[] -> do -- no alternatives, build them.
w <- extractFn
ws <- sourceFn w
withEditor $ setDynamic (Completion $ nubSet (filter (matches w) ws) ++ [w])
-- We put 'w' back at the end so we go back to it after seeing
-- all possibilities.
mkWordComplete extractFn sourceFn msgFn predMatch -- to pick the 1st possibility.
where matches x y = x `predMatch` y && x/=y
wordCompleteString' :: Bool -> YiM String
wordCompleteString' caseSensitive = mkWordComplete
(withEditor $ withBuffer0 $ readRegionB =<< regionOfPartB unitWord Backward)
(\_ -> withEditor wordsForCompletion)
(\_ -> return ())
(mkIsPrefixOf caseSensitive)
wordCompleteString :: YiM String
wordCompleteString = wordCompleteString' True
wordComplete' :: Bool -> YiM ()
wordComplete' caseSensitive = do
x <- wordCompleteString' caseSensitive
withEditor $ withBuffer0 $ flip replaceRegionB x =<< regionOfPartB unitWord Backward
wordComplete :: YiM ()
wordComplete = wordComplete' True
----------------------------
-- Alternative Word Completion
{-
'completeWordB' is an alternative to 'wordCompleteB'.
'completeWordB' offers a slightly different interface. The user
completes the word using the mini-buffer in the same way a user
completes a buffer or file name when switching buffers or opening a
file. This means that it never guesses and completes only as much as
it can without guessing.
I think there is room for both approaches. The 'wordCompleteB' approach
which just guesses the completion from a list of possible completion
and then re-hitting the key-binding will cause it to guess again.
I think this is very nice for things such as completing a word within
a TeX-buffer. However using the mini-buffer might be nicer when we allow
syntax knowledge to allow completion for example we may complete from
a Hoogle database.
-}
completeWordB :: CompletionScope -> EditorM ()
completeWordB = veryQuickCompleteWord
data CompletionScope = FromCurrentBuffer | FromAllBuffers
deriving (Eq, Show)
{-
This is a very quick and dirty way to complete the current word.
It works in a similar way to the completion of words in the mini-buffer
it uses the message buffer to give simple feedback such as,
"Matches:" and "Complete, but not unique:"
It is by no means perfect but it's also not bad, pretty usable.
-}
veryQuickCompleteWord :: CompletionScope -> EditorM ()
veryQuickCompleteWord scope =
do (curWord, curWords) <- withBuffer0 wordsAndCurrentWord
allWords <- fmap concat $ withEveryBufferE $ fmap words' elemsB
let match :: String -> Maybe String
match x = if (curWord `isPrefixOf` x) && (x /= curWord) then Just x else Nothing
wordsToChooseFrom = if scope == FromCurrentBuffer then curWords else allWords
preText <- completeInList curWord match wordsToChooseFrom
if curWord == ""
then printMsg "No word to complete"
else withBuffer0 $ insertN $ drop (length curWord) preText
wordsAndCurrentWord :: BufferM (String, [String])
wordsAndCurrentWord =
do curText <- elemsB
curWord <- readRegionB =<< regionOfPartB unitWord Backward
return (curWord, words' curText)
wordsForCompletionInBuffer :: BufferM [String]
wordsForCompletionInBuffer = do
above <- readRegionB =<< regionOfPartB Document Backward
below <- readRegionB =<< regionOfPartB Document Forward
return (reverse (words' above) ++ words' below)
wordsForCompletion :: EditorM [String]
wordsForCompletion = do
(_b:bs) <- fmap bkey <$> getBufferStack
w0 <- withBuffer0 wordsForCompletionInBuffer
contents <- forM bs $ \b->withGivenBuffer0 b elemsB
return $ w0 ++ concatMap words' contents
words' :: String -> [String]
words' = filter (isJust . charClass . head) . groupBy ((==) `on` charClass)
charClass :: Char -> Maybe Int
charClass c = findIndex (generalCategory c `elem`)
[[UppercaseLetter, LowercaseLetter, TitlecaseLetter, ModifierLetter, OtherLetter,
ConnectorPunctuation,
NonSpacingMark, SpacingCombiningMark, EnclosingMark, DecimalNumber, LetterNumber, OtherNumber],
[MathSymbol, CurrencySymbol, ModifierSymbol, OtherSymbol]
]
{-
Finally obviously we wish to have a much more sophisticated completeword.
One which spawns a mini-buffer and allows searching in Hoogle databases
or in other files etc.
-}