mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 11:30:22 -07:00
Add XMonad.Prompt.Unicode
I have been using this code locally for years now, and it turned out to be quite useful in many cases, so I thought it is about time to submit it to the repository.
This commit is contained in:
parent
858a906240
commit
e4e120bb8e
@ -20,6 +20,11 @@
|
|||||||
the order of windows in the final layout. Any unmatched windows
|
the order of windows in the final layout. Any unmatched windows
|
||||||
go to the end of the order.
|
go to the end of the order.
|
||||||
|
|
||||||
|
* `XMonad.Prompt.Unicode`
|
||||||
|
|
||||||
|
A prompt to search a unicode character by its name, and put it into the
|
||||||
|
clipboard.
|
||||||
|
|
||||||
* `XMonad.Util.Ungrab`
|
* `XMonad.Util.Ungrab`
|
||||||
|
|
||||||
Release xmonad's keyboard and pointer grabs immediately, so
|
Release xmonad's keyboard and pointer grabs immediately, so
|
||||||
|
103
XMonad/Prompt/Unicode.hs
Normal file
103
XMonad/Prompt/Unicode.hs
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
{- |
|
||||||
|
Module : XMonad.Prompt.Unicode
|
||||||
|
Copyright : (c) 2016 Joachim Breitner
|
||||||
|
License : BSD-style (see LICENSE)
|
||||||
|
|
||||||
|
Maintainer : <mail@joachim-breitner.de>
|
||||||
|
Stability : stable
|
||||||
|
|
||||||
|
A prompt for searching unicode characters by name and inserting them into
|
||||||
|
the clipboard.
|
||||||
|
|
||||||
|
Requires the file @\/usr\/share\/unicode\/UnicodeData.txt@ (shipped in the package
|
||||||
|
@unicode-data@ on Debian) and the @xsel@ tool.
|
||||||
|
-}
|
||||||
|
|
||||||
|
module XMonad.Prompt.Unicode (
|
||||||
|
-- * Usage
|
||||||
|
-- $usage
|
||||||
|
unicodePrompt
|
||||||
|
) where
|
||||||
|
|
||||||
|
import qualified Data.ByteString.Char8 as BS
|
||||||
|
import Data.Attoparsec.ByteString.Char8 hiding (take)
|
||||||
|
import Data.Char
|
||||||
|
import Control.Applicative
|
||||||
|
import System.Environment
|
||||||
|
import System.IO
|
||||||
|
import System.IO.Unsafe
|
||||||
|
import System.IO.Error
|
||||||
|
import Control.Arrow
|
||||||
|
import Data.List
|
||||||
|
import Text.Printf
|
||||||
|
|
||||||
|
import XMonad
|
||||||
|
import XMonad.Util.Run
|
||||||
|
import XMonad.Prompt hiding (endOfLine)
|
||||||
|
|
||||||
|
{- $usage
|
||||||
|
|
||||||
|
You can use this module by importing it, along with
|
||||||
|
"XMonad.Prompt", into your ~\/.xmonad\/xmonad.hs file:
|
||||||
|
|
||||||
|
> import XMonad.Prompt
|
||||||
|
> import XMonad.Prompt.Unicode
|
||||||
|
|
||||||
|
and adding an appropriate keybinding, for example:
|
||||||
|
|
||||||
|
> , ((modm .|. controlMask, xK_u), unicodePrompt def)
|
||||||
|
|
||||||
|
-}
|
||||||
|
|
||||||
|
unicodeDataFilename :: String
|
||||||
|
unicodeDataFilename = "/usr/share/unicode/UnicodeData.txt"
|
||||||
|
|
||||||
|
entries :: [(Char, BS.ByteString)]
|
||||||
|
entries = unsafePerformIO $ do
|
||||||
|
datE <- tryIOError $ BS.readFile unicodeDataFilename
|
||||||
|
case datE of
|
||||||
|
Left e -> do
|
||||||
|
hPutStrLn stderr $ "Could not read file \"" ++ unicodeDataFilename ++ "\""
|
||||||
|
hPutStrLn stderr $ show e
|
||||||
|
hPutStrLn stderr $ "Do you have unicode-data installed?"
|
||||||
|
return []
|
||||||
|
Right dat -> case parseOnly (p <* endOfInput) dat of
|
||||||
|
Left e -> do
|
||||||
|
hPutStrLn stderr $ "Failed to parse UnicodeData: " ++ show e
|
||||||
|
return []
|
||||||
|
Right r -> return $ sortOn (BS.length.snd) r
|
||||||
|
{-# NOINLINE entries #-}
|
||||||
|
|
||||||
|
p = many' $ do
|
||||||
|
c <- chr <$> hexadecimal
|
||||||
|
char ';'
|
||||||
|
d <- takeTill (== ';')
|
||||||
|
char ';'
|
||||||
|
skipWhile (/= '\n')
|
||||||
|
endOfLine
|
||||||
|
return (c,d)
|
||||||
|
|
||||||
|
searchUnicode :: String -> [(Char, String)]
|
||||||
|
searchUnicode s = map (second BS.unpack) $ filter go entries
|
||||||
|
where w = map BS.pack $ filter (all isAscii) $ filter ((> 1) . length) $ words $ map toUpper s
|
||||||
|
go (c,d) = all (`BS.isInfixOf` d) w
|
||||||
|
|
||||||
|
-- | Prompt the user for a unicode character to be inserted into the paste buffer of the X server.
|
||||||
|
unicodePrompt :: XPConfig -> X ()
|
||||||
|
unicodePrompt config = mkXPrompt Unicode config unicodeCompl paste
|
||||||
|
where
|
||||||
|
unicodeCompl [] = return []
|
||||||
|
unicodeCompl s = do
|
||||||
|
return $ map (\(c,d) -> printf "%s %s" [c] d) $ take 20 $ searchUnicode s
|
||||||
|
|
||||||
|
paste [] = return ()
|
||||||
|
paste (c:_) = do
|
||||||
|
runProcessWithInput "xsel" ["-i"] [c]
|
||||||
|
return ()
|
||||||
|
|
||||||
|
data Unicode = Unicode
|
||||||
|
instance XPrompt Unicode where
|
||||||
|
showXPrompt Unicode = "Unicode: "
|
||||||
|
commandToComplete Unicode s = s
|
||||||
|
nextCompletion Unicode = getNextCompletion
|
||||||
|
|
@ -54,7 +54,9 @@ flag testing
|
|||||||
default: False
|
default: False
|
||||||
|
|
||||||
library
|
library
|
||||||
build-depends: base >= 4.5 && < 5,
|
build-depends: attoparsec >= 0.13 && < 0.14,
|
||||||
|
base >= 4.5 && < 5,
|
||||||
|
bytestring >= 0.10 && < 0.11,
|
||||||
containers >= 0.5 && < 0.6,
|
containers >= 0.5 && < 0.6,
|
||||||
directory,
|
directory,
|
||||||
extensible-exceptions,
|
extensible-exceptions,
|
||||||
@ -298,6 +300,7 @@ library
|
|||||||
XMonad.Prompt.Shell
|
XMonad.Prompt.Shell
|
||||||
XMonad.Prompt.Ssh
|
XMonad.Prompt.Ssh
|
||||||
XMonad.Prompt.Theme
|
XMonad.Prompt.Theme
|
||||||
|
XMonad.Prompt.Unicode
|
||||||
XMonad.Prompt.Window
|
XMonad.Prompt.Window
|
||||||
XMonad.Prompt.Workspace
|
XMonad.Prompt.Workspace
|
||||||
XMonad.Prompt.XMonad
|
XMonad.Prompt.XMonad
|
||||||
|
Loading…
x
Reference in New Issue
Block a user