Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- getFileContents :: NormalizedFilePath -> Action (UTCTime, Maybe Text)
- getVirtualFile :: VFSHandle -> NormalizedUri -> IO (Maybe VirtualFile)
- setFileModified :: IdeState -> Bool -> NormalizedFilePath -> IO ()
- setSomethingModified :: IdeState -> IO ()
- fileStoreRules :: VFSHandle -> Rules ()
- modificationTime :: FileVersion -> Maybe UTCTime
- typecheckParents :: IdeState -> NormalizedFilePath -> IO ()
- data VFSHandle
- makeVFSHandle :: IO VFSHandle
- makeLSPVFSHandle :: LspFuncs c -> VFSHandle
- isFileOfInterestRule :: Rules ()
Documentation
getFileContents :: NormalizedFilePath -> Action (UTCTime, Maybe Text) Source #
Returns the modification time and the contents. For VFS paths, the modification time is the current time.
getVirtualFile :: VFSHandle -> NormalizedUri -> IO (Maybe VirtualFile) Source #
get the contents of a virtual file
:: IdeState | |
-> Bool | Was the file saved? |
-> NormalizedFilePath | |
-> IO () |
Note that some buffer for a specific file has been modified but not with what changes.
setSomethingModified :: IdeState -> IO () Source #
Note that some buffer somewhere has been modified, but don't say what. Only valid if the virtual file system was initialised by LSP, as that independently tracks which files are modified.
fileStoreRules :: VFSHandle -> Rules () Source #
typecheckParents :: IdeState -> NormalizedFilePath -> IO () Source #
haskell-lsp manages the VFS internally and automatically so we cannot use
the builtin VFS without spawning up an LSP server. To be able to test things
like setBufferModified
we abstract over the VFS implementation.
Instances
IsIdeGlobal VFSHandle Source # | |
Defined in Development.IDE.Core.FileStore |
makeLSPVFSHandle :: LspFuncs c -> VFSHandle Source #
isFileOfInterestRule :: Rules () Source #