v32      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijkl m n o p q r s t u v w x y z { | } ~                                    ! " #$%&' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./01None)23456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~&&General Exceptions(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNone1]2`'Exceptions specific to nvim-hs.(bSimply error message that is passed to neovim. It should currently only contain one line of text.);Error that can be returned by a remote API call. A call of  fromObject1 on this value could be converted to a value of NeovimExceptionGen.'()'()'()=Type classes used for conversion of msgpack and Haskell types(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalNone ;<=>?QV]Ar.Conversion from J files to Haskell types and back with respect to neovim's interpretation.The  constraint has been added to allow forcing results of function evaluations in order to catch exceptions from pure code. This adds more stability to the plugin provider and seems to be a cleaner approach.3A generic vim dictionary is a simply a map from strings to objects. This type alias is sometimes useful as a type annotation especially if the OverloadedStrings extension is enabled.4(Convenient operator to create a list of  from normal values.5 Convert a -ument to a messagepack . This is more a convenience method to transport error message from and to neovim. It generally does not hold that 'docToObject . docFromObject' = .6See 5.C#Right-biased instance for toObject. ./1023456 ./0123456./01245)P.Parser for the msgpack output stram API(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalNoneMa U9This data type represents the top-level structure of the nvim --api-info output.W8The error types are defined by a name and an identifier.X"Extension types defined by neovim.Y=The remotely executable functions provided by the neovim api.ZUThis data type contains simple information about a function as received throudh the nvim --api-info command.\ function name]&A list of type name and variable name.^:Indicator whether the function can fail/throws exceptions._4Indicator whether the this function is asynchronous.`Functions return type.eRun nvim --api-info and parse its output.UVWXYZ[_\]^`adbceUVWXYZ[\]^_`abcdeUVWXYZ[\]^_`abcdLogging utilities and reexports(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNoneTjDisable logging to stderr.kInitialize the root logger to avoid stderr and set it to log the given file instead. Simply wrap the main entry point with this function to initialze the logger. main = k "/home/dude/nvim.log" Debug $ do  "Hello, World!" # jkjk )Classes and data types related to plugins(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNone"#6]l5Conveniennce class to extract a name from some value.n5Options that can be used to register an autocmd. See  :h :autocmdG or any referenced neovim help-page from the fields of this data type.p#Pattern to match on. (default: "*")q Nested autocmd. (default: False)See :h autocmd-nestedr0Group in which the autocmd should be registered.sYou can use this type as the first argument for a function which is intended to be exported as a command. It holds information about the special attributes a command can take.ui means that the function was not defined to handle a bang, otherwise it means that the bang was passed (  *) or that it was not passed when called (  ).v&Range passed from neovim. Only set if 4 was used in the export declaration of the command.Example:  Just (1,12)w$Count passed by neovim. Only set if 4 was used in the export declaration of the command.x.Register that the command can/should/must use.y6Specification of a range that acommand can operate on.z6The line the cursor is at when the command is invoked.{2Let the command operate on every line of the file.|8Let the command operate on each line in the given range.}Newtype wrapper for a list of y. Any properly constructed object of this type is sorted and only contains zero or one object for each possible option.Options for commands.vSome command can also be described by using the OverloadedString extensions. This means that you can write a literal  ) inside your source file in place for a } value. See the documentation for each value on how these strings should look like (Both versions are compile time checked.)Stringliteral "sync" or "async"Register passed to the command.Stringliteral: "\"",Command takes a specific amount of argumentsuAutomatically set via template haskell functions. You really shouldn't use this option yourself unless you have to.'Determines how neovim passes the range.Stringliterals: "%" for {9, "," for line and ",123" for 123 lines.ACommand handles a count. The argument defines the default count.-Stringliteral: string of numbers (e.g. "132")Command handles a bangStringliteral: "!"aThis option detemines how neovim should behave when calling some functionality on a remote host.Call the functionality entirely for its side effects and do not wait for it to finish. Calling a functionality with this flag set is completely asynchronous and nothing is really expected to happen. This is why a call like this is called notification on the neovim side of things.Call the function and wait for its result. This is only synchronous on the neovim side. This means that the GUI will (probably) not allow any user input until a reult is received.6Functionality specific functional description entries.All fields which are directly specified in these constructors are not optional, but can partialy be generated via the Template Haskell functions. The last field is a data type that contains all relevant options with sensible defaults, hence  can be used as an argument. Exported function. Callable via call name(arg1,arg2).:Name of the function (must start with an uppercase letter)FOption to indicate how neovim should behave when calling this functionExported Command. Callable via :Name arg1 arg2.9Name of the command (must start with an uppercase letter)>Options to configure neovim's behavior for calling the commandQExported autocommand. Will call the given function if the type and filter match.oNB: Since we are registering this on the Haskell side of things, the number of accepted arguments should be 0.)Type of the autocmd (e.g. "BufWritePost")Name for the function to callOptions for the autocmd (use + here if you don't want to change anything)Essentially just a string.Smart constructor for }. This sorts the command options and removes duplicate entries for semantically the same thing. Note that the smallest option stays for whatever ordering is defined. It is best to simply not define the same thing multiple times.$lmnopqrstuvwxy{z|}~%}~yz{|stuvwx~nopqrlm lmnopqrstuvwxyz{|} ~+Classes used for Inter Plugin Communication(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNone"#16CV A notification is similar to a . It essentially does the same thing, but the function is only called for its side effects. This type of message is sent by neovim if the caller there does not care about the result of the computation.Name of the function to call.Arguments for the function.A request is a data type containing the method to call, its arguments and an identifier used to map the result to the function that has been called.Name of the function to call.;Identifier to map the result to a function call invocation.Arguments for the function.CHaskell representation of supported Remote Procedure Call messages.,Method name, parameters, callback, timestamp'This class allows type safe casting of e to an actual message. The cast is successful if the type you're expecting matches the type in the  wrapper. This way, you can subscribe to an arbitrary message type withouth having to pattern match on the constructors. This also allows plugin authors to create their own message types without having to change the core code of nvim-hs.fTry to convert a given message to a value of the message type we are interested in. Will evaluate to  for any other type.wTaken from xmonad and based on ideas in /An Extensible Dynamically-Typed Hierarchy of Exceptions/, Simon Marlow, 2006.iUser-extensible messages must be put into a value of this type, so that it can be sent to other plugins.$%%$/Communication between Haskell processes/threads(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalNone >Abstract description of the plugin provider's internal context(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNone &'1;=>?KV]:The state that the plugin provider wants to transition to.Quit the plugin provider.Restart the plugin provider.@The plugin provider failed to start or some other error occured.)The plugin provider started successfully.$This GADT is used to share information between stateless and stateful plugin threads since they work fundamentally in the same way. They both contain a function to register some functionality in the plugin provider as well as some values which are specific to the one or the other context.A wrapper for a reader value that contains extra fields required to communicate with the messagepack-rpc components and provide necessary data to provide other globally available operations.ZNote that you most probably do not want to change the fields prefixed with an underscore._A queue of messages that the event handler will propagate to appropriate threads and handlers.#The main thread will wait for this  Z to be filled with a value and then perform an action appropriate for the value of type .Since nvim-hs must have its Neovim.RPC.SocketReader and Neovim.RPC.EventHandler7 running to determine the actual channel id (i.e. the e value here) this field can only be set properly later. Hence, the value of this field is put in an z. Name that is used to identify this provider. Assigning such a name is done in the neovim config (e.g. ~/.nvim/nvimrc).This : is used to generate uniqe function names on the side of nvim-hsg. This is useful if you don't want to overwrite existing functions or if you create autocmd functions.^This map is used to dispatch received messagepack function calls to it's appropriate targets.In a registered functionality this field contains a function (and possibly some context dependent values) to register new functionality.UPlugin author supplyable custom configuration. Queried on the user-facing side with " or !.A function map is a map containing the names of functions as keys and some context dependent value which contains all the necessary information to execute that function in the intended way.This type is only used internally and handles two distinct cases. One case is a direct function call, wich is simply a function that accepts a list of $ values and returns a result in the  ~ context. The second case is calling a function that has a persistent state. This is mediated to a thread that reads from a {. (NB: persistent currently means, that state is stored for as long as the plugin provider is running and not restarted.).Type of the values stored in the function map.WThis data type is used to dispatch a remote function call to the appopriate recipient.7 functions are simply executed with the sent arguments.4 functions are handled within a special thread, the B is the communication endpoint for the arguments we have to pass.Convenience alias for   () (). This is the environment in which all plugins are initially started. Stateless functions use '()' for the static configuration and the mutable state and there is another type alias for that case: .!Functions have to run in this transformer stack to communicate with neovim. If parts of your own functions dont need to communicate with neovim, it is good practice to factor them out. This allows you to write tests and spot errors easier. Essentially, you should treat this similar to  in general haskell programs. Same as " for the InternalConfig. Same as ! for the InternalConfig. Initialize a   context by supplying an InternalEnvironment.Fork a neovim thread with the given custom config value and a custom state. The result of the thread is discarded and only the  is returend immediately. FIXME This function is pretty much unused and mayhave undesired effects, namely that you cannot register autocmds in the forked thread.pCreate a new unique function name. To prevent possible name clashes, digits are stripped from the given suffix.1Create a new function map from the given list of  values.SConvenient helper to create a new config for the given state and read-only config. Sets the  field to . Create a new InternalConfigB object by providing the minimal amount of necessary information.-This function should only be called once per nvim-hs: session since the arguments are shared across processes.6User facing instance declaration for the reader state.$     '        The Neovim context(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalNone]# specialized to a  value.%*Initiate a restart of the plugin provider.&0Initiate the termination of the plugin provider. !"#'() #$%& '()#$%&"! # KSplit module that can import Neovim.Context without creating import circles(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNoneCV ')- values are wraped inside this data type via 61 so that we can put plugins in an ordinary list.)@This data type contains meta information for the plugin manager.-gThis datatype contains the initial state (mutable and immutable) for the functionalities defined here.2VThis data type is used in the plugin registration to properly register the functions.4Extract the description of an 2.5Extract the function of an 2.6Wrap a )B in some nice blankets, so that we can put them in a simple list.'()*+,-.0/12345623-./0154'()*+,6'()*+,-./0123 Startup utilities for plugins(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNone[8+This data type contains internal fields of nvim-hs= that may be useful for plugin authors. It is available via ask! inside the plugin startup code.:The configuration options for  Config.Dyre. This is always set if nvim-hs has been started via  Config.Dyre. Be sure to set up the ;1 correctly if you issue a recompilation via the  Config.Dyre API.;)The GHC environment variables with which nvim-hs| has been started. This are mainly of significance if you want to use the same environment for compilation or a REPL that nvim-hs runs on.HThese variables have to be used if you want to invoke functionality of  Config.Dyre targeting nvim-hs.89;:89:;89:; .The user editable and compilable configuration(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalNone!<This data type contains information about the configuration of neovim. See the fields' documentation for what you possibly want to change. Also, the tutorial in the Neovim module should get you started.>The list of plugins. The IO type inside the list allows the plugin author to run some arbitrary startup code before creating a value of type '.? Set the general logging options.@3Internally used field. Changing this has no effect.Used by Dyre for storing compilation errors. <=@>?<=>?@<=>?@-Data types and classes for the RPC components(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNone"#16]+oASee  >https://github.com/msgpack-rpc/msgpack-rpc/blob/master/spec.md2 for details about the msgpack rpc specification.B5Request in the sense of the msgpack rpc specificationzParameters * Message identifier that has to be put in the response to this request * Function name * Function argumentsC5Response in the sense of the msgpack rpc specifcation;Parameters * Mesage identifier which matches a request *  an error  or a result D:Notification in the sense of the msgpack rpc specificationABDCABCDABCD"Common functons for the RPC module(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalNoneQV]<7 MJSimple data type defining the kind of socket the socket reader should use.NxUse the handle for receiving msgpack-rpc messages. This is suitable for an embedded neovim which is used in test cases.O?Read the connection information from the environment variable NVIM_LISTEN_ADDRESS.PUse a unix socket.QNUse an IP socket. First argument is the port and the second is the host name.R>Things shared between the socket reader and the event handler.TTA map from message identifiers (as per RPC spec) to a tuple with a timestamp and a D that is used to communicate the result back to the calling thread.UCreate a new basic configuration containing a communication channel for remote procedure call events and an empty lookup table for functions to mediate.V Create a # from the given socket description.'The handle is not automatically closed.W\Close the handle and print a warning if the conduit chain has been interrupted prematurely. MQNOPRSTUVW RSTUMNOPQVWMNOPQRSTFunctions for calling functions(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalNone"#]T Simply fail and call  in case an unexpected exception is thrown. This fails with a runtime exception. It is used by the Template Haskell API generator for functions that are defined as not being able to fail. If this exception occurs, it is a bug in neovim.Strip the error result from the function call. This should only be used by the Template Haskell API generated code for functions that declare themselves as unfailable.X)Helper function that concurrently puts a # in the event queue and returns an  action that returns the result.YHelper function similar to XC that throws a runtime exception if the result is an error object.ZZCall a neovim function synchronously. This function blocks until the result is available.[ Similar to Z, but throw a ' instead of returning it.\Helper function similar to ZC that throws a runtime exception if the result is an error object.]Lifted variant of .^&Wait for the result of the STM action.3This action possibly blocks as it is an alias for ' ioSTM -> ioSTM >>= liftIO . atomically._ Variant of ^ that discards the result.`Wait for the result of the  action and call # . (loc++) . show" if the action returned an error.a` that discards the result.b,Send the result back to the neovim instance.For better error messagesZParameters in an  array0result value of the call or the thrown exception`Prefix error message with this.Function call to neovim XYZ[\]^_`ab XYZ\[]^_`abEvent handling loop(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalNoneK]Ym8Convenient monad transformer stack for the event handlercdThis function will establish a connection to the given socket and write msgpack-rpc requests to it.cc&Template Haskell API generation module(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalNone] :Simply data type used to identify a string-ish type (e.g.  ,  , ! for a value of type.j1Generate the API types and functions provided by nvim --api-info.The provided map allows the use of different Haskell types for the types defined in the API. The types must be an instance of .z and they must form an isomorphism with the sent messages types. Currently, it provides a Convenient way to replace the String type with  , ! or  .k,Default type mappings for the requested API."VThis function will create a wrapper function with neovim's function name as its name.Synchronous function: w buffer_get_number :: Buffer -> Neovim Int64 buffer_get_number buffer = scall "buffer_get_number" [toObject buffer] Asynchronous function: _ vim_eval :: String -> Neovim (TMVar Object) vim_eval str = acall "vim_eval" [toObject str] /Asynchronous function without a return value:  vim_feed_keys :: String -> String -> Bool -> Neovim () vim_feed_keys keys mode escape_csi = acallVoid "vim_feed_keys" [ toObject keys , toObject mode , toObject escape_csi ] #5 createDataTypeWithObjectComponent SomeName [Foo,Bar] will create this: i data SomeName = Foo !Object | Bar !Object deriving (Typeable, Eq, Show) $If the first parameter is mkName NeovimException , this function will generate "instance Exception NeovimException.%+customTypeInstance Foo [(Bar, 1), (Quz, 2)] will create this: - instance Serializable Foo where toObject (Bar bs) = ObjectExt 1 bs toObject (Quz bs) = ObjectExt 2 bs fromObject (ObjectExt 1 bs) = return $ Bar bs fromObject (ObjectExt 2 bs) = return $ Quz bs fromObject o = Left $ "Object is not convertible to: Foo Received: " <> show o lhDefine an exported function by providing a custom name and referencing the function you want to export.8Note that the name must start with an upper case letter. Example: 5 $(function "MyExportedFunction" 'myDefinedFunction) Sync m>Define an exported function. This function works exactly like lb, but it generates the exported name automatically by converting the first letter to upper case.&Given a value of type 'F, test whether it can be classified according to the constructors of .n Similarly to l@, this function is used to export a command with a custom name.8Note that commands must start with an upper case letter.Due to limitations on the side of (neo)vim, commands can only have one of the following five signatures, where you can replace   with ! or   if you wish:s ->   r st ()s -> (   ->   r st ()s ->   ->   r st ()s -> [ ] ->   r st ()s ->   -> [ ] ->   r st () Example: . $(command "RememberThePrime" 'someFunction) [] Note that the list of command options (i.e. the last argument) removes duplicate options by means of some internally convenient sorting. You should simply not define the same option twice.o=Define an exported command. This function works exactly like nR, but it generates the command name by converting the first letter to upper case.)Generate a function of type [Object] -> Neovim' Object from the argument function.The function ' add :: Int -> Int -> Int add = (+)  will be converted to 3 args -> case args of [x,y] -> case pure add  * fromObject x  *u fromObject y of Left e -> err $ "Wrong type of arguments for add: " ++ e Right action -> toObject  $J action _ -> err $ "Wrong number of arguments for add: " ++ show xs *+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~./1023456jklmnopjlmnopkString based API(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalNone16QVMuvwxyz{}|~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~V{|}yzwxuv~}|{zyxwvutsrqponmlkjihgfedcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-,+*)('&%$#"!      ~uvwxyz{|}*API for interacting with the quickfix list(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNone"#6]B CAdd items to the current list (or create a new one if none exists).:Replace current list (or create a new one if none exists).Create a new list.Simple error type enum.KQuickfix list item. The parameter names should mostly conform to those in :h setqflist()o. Some fields are merged to explicitly state mutually exclusive elements or some other behavior of the fields.see < for creating a value of this type without typing too much.YSince the filename is only used if no buffer can be specified, this field is a merge of bufnr and filename.2Line number or search pattern to locate the error.\A tuple of a column number and a boolean indicating which kind of indexing should be used.  / means that the visual column should be used.   means to use the byte index. Error number.Description of the error.Type of error."This is a wrapper around neovim's  setqflist(). strType2 can be any string that you can append to (hence ) that is also an instance of .!. You can e.g. use the plain old  . Create a 6 by providing the minimal amount of arguments needed.buffer of file nameline number or pattern*Plugin and functionality registration code(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNone"#&'V]]Callthe vimL functions to define a function, command or autocmd on the neovim side. Returns   if registration was successful.7Note that this does not have any effect on the side of nvim-hs.eReturn or retrive the provider name that the current instance is associated with on the neovim side.0Register a functoinality in a stateless context.Register an autocmd in the current context. This means that, if you are currently in a stateful plugin, the function will be called in the current thread and has access to the configuration and state of this thread. If you need that information, but do not want to block the other functions in this thread, you have to manually fork a thread and make the state you need available there. If you don't care abou the state (or your function has been appield to all the necessary state (e.g. a / to share the rusult), then you can also call w which will register a stateless function that only interacts with other threads by means of concurrency abstractions.6Note that the function you pass must be fully applied.,Note beside: This function is equivalent to + if called from a stateless plugin thread.Add a stateless autocmd.See  for more details.8Create a listening thread for events and add update the  with the corresponding  s (i.e. communication channels).,The event to register to (e.g. BufWritePost)"Fully applied function to registerA  if the registration worked')*+,66')*+,?The component which reads RPC messages from the neovim instance(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalNone"#K]scThis function will establish a connection to the given socket and read msgpack-rpc events from it.;Sink that delegates the messages depending on their type. >https://github.com/msgpack-rpc/msgpack-rpc/blob/master/spec.mdAct upon the received request or notification. The main difference between the two is that a notification does not generate a reply. The distinction between those two cases is done via the first paramater which is ( the function call identifier.Utility functions(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNone]Execute the given action with a changed set of environment variables and restore the original state of the environment afterwards. with a monadic predicate. with a monadic predicate.  CInternals for a config helper plugin that helps recompiling nvim-hs(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNone"#] !Simple function that will return Pong$ if the plugin provider is running. IRecompile the plugin provider and put comile errors in the quickfix list. Note that restarting the plugin provider implies compilation because Dyre does this automatically. However, if the recompilation fails, the previously compiled binary is executed. This essentially means that restarting may take more time then you might expect.=If you provide a bang to the command, the cache directory of nvim-hs is forcibly removed.:Skip anything until the next location information appears.?The result will be a triple of filename, line number and column"Try to parse location information. /some/path/to/a/file.hs:42:88:          4Helper plugin to ease recompiling the nvim-hs config(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNone]$Wrapper for the actual main function(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalNone]A  function receives the Ys of all running threads which have been started by the plugin provider as well as the  with the custom field set to R. These information can be used to properly clean up a session and then do something else. The transition handler is first called after the plugin provider has started."*This is essentially the main function for nvim-hs, at least if you want to use  Config.Dyre for the configuration.#QThis main functions can be used to create a custom executable without using the  Config.Dyre library while still using the nvim-hs$ specific configuration facilities.$IGeneric main function. Most arguments are optional or have sane defaults.%WIf the plugin provider is started with dyre, this handler is used to handle a restart.$See nvim-hs executables --help function or   !"#$%& !"#$%#API for the neovim plugin provider nvim-hs(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHC (due to Template Haskell)None%'"Default configuration options for nvim-hsY. If you want to keep the default plugins enabled, you can define your config like this: main = " 'D { plugins = myPlugins ++ plugins defaultConfig } 234  !"'(./1023456nopqrstuvwxy{z| #$'()*+,-.0/1689:;<=@>?^_`almnopuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~"'n "<=>?@'89:;'(-./01)*+,./012436lmnopyz{|stuvwxnopqr"! ^_`a#$'(56 Testing functions(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNone](Type synonym for .*Run the given  y action according to the given parameters. The embedded neovim instance is started without a config (i.e. it is passed -u NONE).If you want to run your tests purely from haskell, you have to setup the desired state of neovim with the help of the functions in Neovim.API.String.*-Optional path to a file that should be opened7Maximum time (in seconds) that a test is allowed to runRead-only configurationState Test case()**()()3Utilities to debug Neovim and nvim-hs functionality(c) Sebastian Witte Apache-2.0woozletoff@gmail.com experimentalGHCNone]+4+Run a   function.MThis function connects to the socket pointed to by the environment variable $NVIM_LISTEN_ADDRESS and executes the command. It does not register itself as a real plugin provider, you can simply call neovim-functions from the module Neovim.API.String this way.^Tip: If you run a terminal inside a neovim instance, then this variable is automatically set.,Run a  function. debug' a = fmap fst  $ debug () () a See documentation for +.-zThis function is intended to be run _once_ in a ghci session that to give a REPL based workflow when developing a plugin.6Note that the dyre-based reload mechanisms, i.e. the Neovim.Plugin.ConfigHelper! plugin, is not started this way.To use this in ghci, you simply bind the results to some variables. After each reload of ghci, you have to rebind those variables.Example:   (tids, cfg) <- -   0( cfg $ vim_call_function "getqflist" []  ( ( []))  :r   (tids, cfg) <- -  .*Quit a previously started plugin provider./(Restart the development plugin provider.0(Convenience function to run a stateless   function.1-Print the global function map to the console. 234  !"'(./1023456nopqrstuvwxy{z| #$'()*+,-.0/1689:;<=@>?^_`almnopuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~"'+,-./01+,-./10 !"#!"$!"%!"&!"'()*+,-./-.0-.1-.2-.3-.4-.5-.6-.789:89;89<89=89>89?89@89A89B89C89D89EFGHFGIFGJFGKFLMFLNFOPQRSQTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                                         ! ! " # $ % & ' ( ) * + , - .   / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E FGHIJ K K L L M N O O P Q R S T U V W X Y Y Z [ \ ! ] ^ _`abcdefghijklmnnopqrstuvwxyz{|}~W      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~#     Y !"#$%&'()*+,-.$/0123456789:;<<=>?@ABCDEFEGHIJKLJKMJKNJKOJPJPQJPRJPSJPTJPUJPVJPWJPXJPYJPZJP[JP\JP]JP^JP_JP`abcabdabeabfabgabhabiabjabkablabmabnaboabpabqabrabsabtabuabvabwabxabyabzab{ab|ab}ab~ababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaE     ----------------- -!-"-#-$-%-&-'E(E)*+E, -./012340567389:(;<=>?@ABC3D3EFFGHIJKLMNOPQRSTUEVWEXYZ[\]^]_]_]`]`]a]a]b]b]c]c]d]d]e]e]f]fghgigjgjgkgkglglgmgmgngngogogpgpgqgrgsgtgugvgwgxyzy{y|y}y~g9999999999999999EEEEEEEEEEEEEE`EUHHHHHHHHHEEE<$nvim-hs-0.2.5-Jju5PaldQ6jL5dqBGEr7IXNeovim.ClassesNeovimNeovim.ContextNeovim.Plugin.IPC.ClassesNeovim.Compat.MegaparsecNeovim.ExceptionsNeovim.API.Parser Neovim.LogNeovim.Plugin.ClassesNeovim.Context.InternalNeovim.Plugin.InternalNeovim.Plugin.Startup Neovim.ConfigNeovim.RPC.ClassesNeovim.RPC.CommonNeovim.RPC.FunctionCallNeovim.RPC.EventHandler Neovim.API.THNeovim.API.StringNeovim.Quickfix Neovim.PluginNeovim.RPC.SocketReader Neovim.Util#Neovim.Plugin.ConfigHelper.InternalNeovim.Plugin.ConfigHelper Neovim.Main Neovim.Test Neovim.DebugNeovim.Plugin.IPCbase GHC.GenericsGeneric-ansi-wl-pprint-0.6.8.1-4O23QCkDAx5Dl9OsYngqtd%Text.PrettyPrint.ANSI.Leijen.Internaltext prettyListprettyPrettyDocControl.Monad.IO.ClassliftIO1data-default-class-0.1.2.0-8hmGYd6GPAfLQPQcWKOjRmData.Default.Classdef&hslogger-1.2.10-2aTc2LvxZwC5zXNjH0iLyx System.Log EMERGENCYALERTCRITICALERRORWARNINGNOTICEINFODEBUGPriority(messagepack-0.5.4-6cqq9KhRZhT2IBRm1gSu86Data.MessagePack ObjectExt ObjectMap ObjectArray ObjectBinary ObjectString ObjectDouble ObjectFloat ObjectBool ObjectInt ObjectUInt ObjectNilObject mtl-2.2.1-DscMMmDQUE6GBfOSl4qMUHControl.Monad.State.ClassgetsmodifyputgetControl.Monad.Reader.ClassasksaskControl.Monad.Error.Class throwError time-1.8.0.2Data.Time.Clock.POSIXgetCurrentTime Data.Time.Clock.Internal.UTCTimeUTCTimeParserNeovimException ErrorMessage ErrorResult$fPrettyNeovimException$fIsStringNeovimException$fExceptionNeovimException$fShowNeovimException NvimObjecttoObjectfromObjectUnsafe fromObject fromObject' Dictionary+: docToObject docFromObject$fNvimObject(,,,,,,,,)$fNvimObject(,,,,,,,)$fNvimObject(,,,,,,)$fNvimObject(,,,,,)$fNvimObject(,,,,)$fNvimObject(,,,)$fNvimObject(,,)$fNvimObject(,)$fNvimObjectObject$fNvimObjectByteString$fNvimObjectText$fNvimObjectMap$fNvimObjectEither$fNvimObjectMaybe$fNvimObject[]$fNvimObject[]0$fNvimObjectInt$fNvimObjectWord8$fNvimObjectWord16$fNvimObjectWord32$fNvimObjectWord64$fNvimObjectWord$fNvimObjectInt8$fNvimObjectInt16$fNvimObjectInt32$fNvimObjectInt64$fNvimObjectInteger$fNvimObjectDouble$fNvimObjectBool$fNvimObject() NeovimAPI errorTypes customTypes functionsNeovimFunctionname parameterscanFailasync returnType NeovimType SimpleType NestedTypeVoidparseAPI$fShowNeovimType$fEqNeovimType$fShowNeovimFunction$fShowNeovimAPI disableLogger withLoggerHasFunctionNameAutocmdOptions acmdPattern acmdNested acmdGroupCommandArgumentsbangrangecountregisterRangeSpecification CurrentLine WholeFile RangeCountCommandOptionsgetCommandOptions CommandOptionCmdSync CmdRegisterCmdNargsCmdRangeCmdCountCmdBang SynchronousAsyncSyncFunctionalityDescriptionFunctionCommandAutocmd FunctionNameFmkCommandOptions$fPrettyFunctionName$fNFDataFunctionName$fNvimObjectSynchronous$fIsStringSynchronous$fPrettySynchronous$fNFDataSynchronous$fNvimObjectRangeSpecification$fPrettyRangeSpecification$fNFDataRangeSpecification$fIsStringCommandOption$fPrettyCommandOption$fNFDataCommandOption$fNvimObjectCommandOptions$fPrettyCommandOptions$fNFDataCommandOptions$fNvimObjectCommandArguments$fDefaultCommandArguments$fPrettyCommandArguments$fNFDataCommandArguments$fNvimObjectAutocmdOptions$fDefaultAutocmdOptions$fPrettyAutocmdOptions$fNFDataAutocmdOptions $fPrettyFunctionalityDescription $fNFDataFunctionalityDescription)$fHasFunctionNameFunctionalityDescription$fEqFunctionName$fOrdFunctionName$fShowFunctionName$fReadFunctionName$fGenericFunctionName$fShowSynchronous$fReadSynchronous$fEqSynchronous$fOrdSynchronous$fEnumSynchronous$fGenericSynchronous$fEqRangeSpecification$fOrdRangeSpecification$fShowRangeSpecification$fReadRangeSpecification$fGenericRangeSpecification$fEqCommandOption$fOrdCommandOption$fShowCommandOption$fReadCommandOption$fGenericCommandOption$fEqCommandOptions$fOrdCommandOptions$fShowCommandOptions$fReadCommandOptions$fGenericCommandOptions$fEqCommandArguments$fOrdCommandArguments$fShowCommandArguments$fReadCommandArguments$fGenericCommandArguments$fShowAutocmdOptions$fReadAutocmdOptions$fEqAutocmdOptions$fOrdAutocmdOptions$fGenericAutocmdOptions$fShowFunctionalityDescription$fReadFunctionalityDescription$fEqFunctionalityDescription$fOrdFunctionalityDescription!$fGenericFunctionalityDescription Notification notMethodnotArgsRequest reqMethodreqIdreqArgs FunctionCallMessage fromMessage SomeMessage$fPrettyFunctionCall$fMessageFunctionCall$fPrettyRequest$fMessageRequest$fNFDataRequest$fPrettyNotification$fMessageNotification$fNFDataNotification $fEqRequest $fOrdRequest $fShowRequest$fGenericRequest$fEqNotification$fOrdNotification$fShowNotification$fGenericNotificationStateTransitionQuitRestartFailure InitSuccessPluginSettingsStatelessSettingsStatefulSettingsConfig eventQueue transitionTo providerName uniqueCounterglobalFunctionMappluginSettings customConfig FunctionMapFunctionMapEntry FunctionType StatelessStatefulNeovim'unNeovimask'asks'exceptionHandlers runNeovimrunNeovimInternal forkNeovimnewUniqueFunctionName mkFunctionMap retypeConfig newConfig$fPrettyFunctionType$fMonadReaderrNeovim$fMonadBaseIONeovim$fShowStateTransition$fFunctorNeovim$fApplicativeNeovim $fMonadNeovim$fMonadIONeovim$fMonadStateNeovim$fMonadThrowNeovim$fMonadCatchNeovim$fMonadMaskNeovim$fMonadResourceNeovimerrerrOnInvalidResultrestartquit NeovimPluginPluginexportsstatefulExportsStatefulFunctionalityreadOnlywritablefunctionalitiesExportedFunctionalityEFgetDescription getFunction wrapPlugin&$fHasFunctionNameExportedFunctionality StartupConfig dyreParamsghcEnvironmentVariables NeovimConfigplugins logOptions errorMessageResponse$fPrettyMessage$fNvimObjectMessage$fMessageMessage$fNFDataMessage $fEqMessage $fOrdMessage $fShowMessage$fGenericMessage SocketTypeStdout Environment UnixSocketTCP RPCConfig recipients newRPCConfig createHandle cleanUpHandleacallacall'scall scallThrowscall' atomically'waitwait'waitErrwaitErr'respondrunEventHandler$fFunctorEventHandler$fApplicativeEventHandler$fMonadEventHandler$fMonadStateEventHandler$fMonadIOEventHandler$fMonadReaderEventHandler generateAPIdefaultAPITypeToHaskellTypeMapfunction function'commandcommand'autocmd $fEqArgType $fOrdArgType $fShowArgType $fReadArgTypeWindowTabpageBufferNeovimExceptionGenNeovimValidationnvim_buf_line_countnvim_buf_line_count'buffer_get_linebuffer_get_line'buffer_set_linebuffer_set_line'buffer_del_linebuffer_del_line'buffer_get_line_slicebuffer_get_line_slice'nvim_buf_get_linesnvim_buf_get_lines'buffer_set_line_slicebuffer_set_line_slice'nvim_buf_set_linesnvim_buf_set_lines'nvim_buf_get_varnvim_buf_get_var'nvim_buf_get_changedticknvim_buf_get_changedtick'nvim_buf_set_varnvim_buf_set_var'nvim_buf_del_varnvim_buf_del_var'buffer_set_varbuffer_set_var'buffer_del_varbuffer_del_var'nvim_buf_get_optionnvim_buf_get_option'nvim_buf_set_optionnvim_buf_set_option'nvim_buf_get_numbernvim_buf_get_number'nvim_buf_get_namenvim_buf_get_name'nvim_buf_set_namenvim_buf_set_name'nvim_buf_is_validnvim_buf_is_valid' buffer_insertbuffer_insert'nvim_buf_get_marknvim_buf_get_mark'nvim_buf_add_highlightnvim_buf_add_highlight'nvim_buf_clear_highlightnvim_buf_clear_highlight'nvim_tabpage_list_winsnvim_tabpage_list_wins'nvim_tabpage_get_varnvim_tabpage_get_var'nvim_tabpage_set_varnvim_tabpage_set_var'nvim_tabpage_del_varnvim_tabpage_del_var'tabpage_set_vartabpage_set_var'tabpage_del_vartabpage_del_var'nvim_tabpage_get_winnvim_tabpage_get_win'nvim_tabpage_get_numbernvim_tabpage_get_number'nvim_tabpage_is_validnvim_tabpage_is_valid'nvim_ui_attachnvim_ui_attach' ui_attach ui_attach'nvim_ui_detachnvim_ui_detach'nvim_ui_try_resizenvim_ui_try_resize'nvim_ui_set_optionnvim_ui_set_option' nvim_command nvim_command' nvim_feedkeysnvim_feedkeys' nvim_input nvim_input'nvim_replace_termcodesnvim_replace_termcodes'nvim_command_outputnvim_command_output' nvim_eval nvim_eval'nvim_call_functionnvim_call_function' nvim_strwidthnvim_strwidth'nvim_list_runtime_pathsnvim_list_runtime_paths'nvim_set_current_dirnvim_set_current_dir'nvim_get_current_linenvim_get_current_line'nvim_set_current_linenvim_set_current_line'nvim_del_current_linenvim_del_current_line' nvim_get_var nvim_get_var' nvim_set_var nvim_set_var' nvim_del_var nvim_del_var' vim_set_var vim_set_var' vim_del_var vim_del_var' nvim_get_vvarnvim_get_vvar'nvim_get_optionnvim_get_option'nvim_set_optionnvim_set_option'nvim_out_writenvim_out_write'nvim_err_writenvim_err_write'nvim_err_writelnnvim_err_writeln'nvim_list_bufsnvim_list_bufs'nvim_get_current_bufnvim_get_current_buf'nvim_set_current_bufnvim_set_current_buf'nvim_list_winsnvim_list_wins'nvim_get_current_winnvim_get_current_win'nvim_set_current_winnvim_set_current_win'nvim_list_tabpagesnvim_list_tabpages'nvim_get_current_tabpagenvim_get_current_tabpage'nvim_set_current_tabpagenvim_set_current_tabpage'nvim_subscribenvim_subscribe'nvim_unsubscribenvim_unsubscribe'nvim_get_color_by_namenvim_get_color_by_name'nvim_get_color_mapnvim_get_color_map' nvim_get_modenvim_get_mode'nvim_get_api_infonvim_get_api_info'nvim_call_atomicnvim_call_atomic'nvim_win_get_bufnvim_win_get_buf'nvim_win_get_cursornvim_win_get_cursor'nvim_win_set_cursornvim_win_set_cursor'nvim_win_get_heightnvim_win_get_height'nvim_win_set_heightnvim_win_set_height'nvim_win_get_widthnvim_win_get_width'nvim_win_set_widthnvim_win_set_width'nvim_win_get_varnvim_win_get_var'nvim_win_set_varnvim_win_set_var'nvim_win_del_varnvim_win_del_var'window_set_varwindow_set_var'window_del_varwindow_del_var'nvim_win_get_optionnvim_win_get_option'nvim_win_set_optionnvim_win_set_option'nvim_win_get_positionnvim_win_get_position'nvim_win_get_tabpagenvim_win_get_tabpage'nvim_win_get_numbernvim_win_get_number'nvim_win_is_validnvim_win_is_valid'buffer_line_countbuffer_line_count'buffer_get_linesbuffer_get_lines'buffer_set_linesbuffer_set_lines'buffer_get_varbuffer_get_var'buffer_get_optionbuffer_get_option'buffer_set_optionbuffer_set_option'buffer_get_numberbuffer_get_number'buffer_get_namebuffer_get_name'buffer_set_namebuffer_set_name'buffer_is_validbuffer_is_valid'buffer_get_markbuffer_get_mark'buffer_add_highlightbuffer_add_highlight'buffer_clear_highlightbuffer_clear_highlight'tabpage_get_windowstabpage_get_windows'tabpage_get_vartabpage_get_var'tabpage_get_windowtabpage_get_window'tabpage_is_validtabpage_is_valid' ui_detach ui_detach' ui_try_resizeui_try_resize' vim_command vim_command' vim_feedkeys vim_feedkeys' vim_input vim_input'vim_replace_termcodesvim_replace_termcodes'vim_command_outputvim_command_output'vim_eval vim_eval'vim_call_functionvim_call_function' vim_strwidth vim_strwidth'vim_list_runtime_pathsvim_list_runtime_paths'vim_change_directoryvim_change_directory'vim_get_current_linevim_get_current_line'vim_set_current_linevim_set_current_line'vim_del_current_linevim_del_current_line' vim_get_var vim_get_var' vim_get_vvar vim_get_vvar'vim_get_optionvim_get_option'vim_set_optionvim_set_option' vim_out_writevim_out_write' vim_err_writevim_err_write'vim_report_errorvim_report_error'vim_get_buffersvim_get_buffers'vim_get_current_buffervim_get_current_buffer'vim_set_current_buffervim_set_current_buffer'vim_get_windowsvim_get_windows'vim_get_current_windowvim_get_current_window'vim_set_current_windowvim_set_current_window'vim_get_tabpagesvim_get_tabpages'vim_get_current_tabpagevim_get_current_tabpage'vim_set_current_tabpagevim_set_current_tabpage' vim_subscribevim_subscribe'vim_unsubscribevim_unsubscribe'vim_name_to_colorvim_name_to_color'vim_get_color_mapvim_get_color_map'vim_get_api_infovim_get_api_info'window_get_bufferwindow_get_buffer'window_get_cursorwindow_get_cursor'window_set_cursorwindow_set_cursor'window_get_heightwindow_get_height'window_set_heightwindow_set_height'window_get_widthwindow_get_width'window_set_widthwindow_set_width'window_get_varwindow_get_var'window_get_optionwindow_get_option'window_set_optionwindow_set_option'window_get_positionwindow_get_position'window_get_tabpagewindow_get_tabpage'window_is_validwindow_is_valid'$fNvimObjectNeovimExceptionGen$fExceptionNeovimExceptionGen$fNFDataNeovimExceptionGen$fNvimObjectBuffer$fNFDataBuffer$fNvimObjectTabpage$fNFDataTabpage$fNvimObjectWindow$fNFDataWindow$fEqNeovimExceptionGen$fShowNeovimExceptionGen$fGenericNeovimExceptionGen $fEqBuffer $fShowBuffer$fGenericBuffer $fEqTabpage $fShowTabpage$fGenericTabpage $fEqWindow $fShowWindow$fGenericWindowQuickfixActionAppendReplaceNewQuickfixErrorTypeWarningErrorQuickfixListItemQFItem bufOrFile lnumOrPatterncolnr errorType setqflistquickfixListItem$fNvimObjectQuickfixErrorType$fNFDataQuickfixErrorType$fNvimObjectQuickfixListItem$fNFDataQuickfixListItem$fNvimObjectQuickfixAction$fNFDataQuickfixAction$fEqQuickfixErrorType$fOrdQuickfixErrorType$fShowQuickfixErrorType$fReadQuickfixErrorType$fEnumQuickfixErrorType$fBoundedQuickfixErrorType$fGenericQuickfixErrorType$fEqQuickfixListItem$fShowQuickfixListItem$fGenericQuickfixListItem$fEqQuickfixAction$fOrdQuickfixAction$fEnumQuickfixAction$fBoundedQuickfixAction$fShowQuickfixAction$fGenericQuickfixActionstartPluginThreadsregisterInStatelessContextregisterInStatefulContext addAutocmd addAutocmd'runSocketReader parseParamswithCustomEnvironmentwhenMunlessMoneLineErrorMessage pingNvimhsrecompileNvimhs restartNvimhsparseQuickfixItemspQuickfixListItem pSeveritypShortDesrciptionpLongDescription tabOrSpace blankLine pLocationpIntpluginTransitionHandlerCommandLineOptionsOpthostPortunixenvlogOptslogger optParseroptsneovimrealMainrunPluginProvider finishDyre$fDefaultCommandLineOptions defaultConfigSecondstestWithEmbeddedNeovimdebugdebug' develMain quitDevelMainrestartDevelMain runNeovim'printGlobalFunctionMapGHC.Baseempty<|>Control.Applicativeoptional/parser-combinators-0.4.0-LXzRXKyLrFT6DPfieme8NKControl.Applicative.CombinatorsbetweenchoiceeitherPoptionControl.Monad.Combinatorscount'endByendBy1manyTillsomesomeTillsepBysepBy1sepEndBy sepEndBy1skipManyskipSome skipCount skipManyTill skipSomeTillmany&megaparsec-6.4.0-xl4HlJBghw88uZEZB1lRfText.Megaparsec.Charstring'stringsatisfynoneOfoneOfnotCharanyCharchar'char categoryName charCategory latin1Char asciiChar separatorChar symbolCharpunctuationChar numberCharmarkChar hexDigitChar octDigitChar digitChar printChar alphaNumChar letterChar lowerChar upperChar spaceChar controlCharspace1spacetabeolcrlfnewlineText.MegaparsecdbgsetParserState setTabWidth getTabWidthsetTokensProcessedgetTokensProcessed popPosition pushPosition setPositiongetNextTokenPosition getPositionsetInputgetInputatEndtakeRestregionmatch customFailure unexpected runParserT' runParserT runParser' runParser parseTest' parseTest parseMaybeparseState stateInputstatePosstateTokensProcessed stateTabWidthParsecParsecT MonadParsectry lookAheadeoflabelfailure fancyFailurehidden notFollowedBy withRecovery observingtokentokens takeWhileP takeWhile1PtakePgetParserStateupdateParserStateText.Megaparsec.ErrorparseErrorTextPrettysourcePosStackPrettyparseErrorPretty_parseErrorPretty'parseErrorPrettyerrorPos ErrorItemTokensLabel EndOfInput ErrorFancy ErrorFailErrorIndentation ErrorCustom ParseError TrivialError FancyError ShowToken showTokens LineToken tokenAsChartokenIsNewlineShowErrorComponentshowErrorComponentText.Megaparsec.StreamStreamToken tokenToChunk tokensToChunk chunkToTokens chunkLength chunkEmpty positionAt1 positionAtNadvance1advanceNtake1_takeN_ takeWhile_Text.Megaparsec.PossourcePosPretty initialPosdefaultTabWidthpos1unPosmkPosPosInvalidPosException SourcePos sourceLine sourceColumn sourceNamedeepseq-1.4.3.0Control.DeepSeqNFDataidGHC.IntInt8Int16Int32Int64ghc-prim GHC.TypesWordGHC.WordWord8Word16Word32Word64rnf2rnf1rwhnf<$!!>force$!!deepseqrnfNFData1liftRnfNFData2liftRnf2 System.IOputStrLnSystem.Log.Logger traploggingremoveAllHandlersupdateGlobalLoggersaveGlobalLogger clearLevelsetLevelgetLevel setHandlers removeHandler addHandlerlogL getRootLogger getLogger emergencyMalertM criticalMerrorMwarningMnoticeMinfoMdebugMlogMrootLoggerNameLoggerNothingJustTrueFalseStringGHC.MVarMVarInt"stm-2.4.4.1-6AExGOUG8NB2Rzejnay0wwControl.Concurrent.STM.TMVarTMVar GHC.Conc.SyncTVarControl.Concurrent.STM.TQueueTQueueIOThreadId GHC.ExceptionthrowMonadIO Data.EitherEitherGHC.IO.Handle.TypesHandleunexpectedExceptionGHC.ErrerrorwithIgnoredExceptionSTM atomically EventHandlerArgType#text-1.2.2.2-EakMpasry3jA6OIwSZhq9MData.Text.InternalTextbytestring-0.10.8.2Data.ByteString.Internal ByteStringcreateFunction%createDataTypeWithByteStringComponentexceptionInstancecustomTypeInstanceclassifyArgTypetemplate-haskellLanguage.Haskell.TH.SyntaxTypeMaybefunctionImplementationassert Data.DataDataData.Typeable.InternalTypeableControl.Exception.Base mapExceptionPatternMatchFail RecSelError RecConError RecUpdError NoMethodError TypeErrorNonTerminationNestedAtomicallyGHC.IO.ExceptionasyncExceptionFromExceptionasyncExceptionToExceptionBlockedIndefinitelyOnMVarBlockedIndefinitelyOnSTMDeadlockAllocationLimitExceededCompactionFailedAssertionFailedSomeAsyncExceptionAsyncException StackOverflow HeapOverflow ThreadKilled UserInterruptArrayExceptionIndexOutOfBoundsUndefinedElementGHC.IO interruptible MaskingStateUnmaskedMaskedInterruptibleMaskedUninterruptible IOException Exception toException fromExceptiondisplayException ErrorCallErrorCallWithLocationArithExceptionOverflow UnderflowLossOfPrecision DivideByZeroDenormalRatioZeroDenominator SomeException+lifted-base-0.2.3.11-5mrB3u458gwFrnCkvjm5RmControl.Exception.Lifted onExceptionfinallybracketOnErrorbracket_bracketallowInterruptgetMaskingStateuninterruptibleMask_uninterruptibleMaskmask_maskevaluatetryJust handleJusthandle catchJustcatchescatchthrowToioErrorthrowIOHandler StringyTypeListOfStringyTypesOptionalCommandArgumentsType OtherTypeMonoidregisterWithNeovimgetProviderNameregisterStatefulFunctionality&resourcet-1.1.10-Ag5rXDYT2VCN2oEf7MzI1%Control.Monad.Trans.Resource.Internal ReleaseKeymessageHandlerSinkhandleRequestOrNotificationwhen Control.Monadunless<$ Applicativepure<*>*><*liftA2memptymappendmconcat Data.Monoid<> Alternative WrappedMonad WrapMonad unwrapMonad WrappedArrow WrapArrow unwrapArrowZipList getZipListData.Functor.ConstConstgetConstDualgetDualEndoappEndoAllgetAllAnygetAnySumgetSumProduct getProductFirstgetFirstLastgetLastAltgetAlt Data.Functorvoid<$>liftA3liftA<**>Right