Skip to content

Commit

Permalink
Clean the Editor sink a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuuzetsu committed Oct 14, 2014
1 parent 96c773e commit 0bdffd7
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions yi/src/library/Yi/Editor.hs
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
{-# LANGUAGE CPP #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE TemplateHaskell #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS_HADDOCK show-extensions #-}
Expand Down Expand Up @@ -111,11 +104,6 @@ import Data.Binary
import Data.Default
import qualified Data.DelayList as DelayList
import Data.DynamicState.Serializable
#if __GLASGOW_HASKELL__ < 708
import Data.DeriveTH
#else
import GHC.Generics (Generic)
#endif
import Data.Foldable hiding (forM_)
import Data.List (delete, (\\))
import Data.List.NonEmpty (fromList, NonEmpty(..), nub)
Expand All @@ -127,7 +115,6 @@ import Data.Maybe
import qualified Data.Monoid as Mon
import Data.Semigroup
import qualified Data.Text as T
import Data.Typeable
import Prelude hiding (foldl,concatMap,foldr,all)
import System.FilePath (splitPath)
import Yi.Buffer
Expand Down Expand Up @@ -444,7 +431,7 @@ setTmpStatus delay s = withEditor $ do

-- ---------------------------------------------------------------------
-- kill-register (vim-style) interface to killring.
--
--
-- Note that our vim keymap currently has its own registers
-- and doesn't use killring.

Expand Down

0 comments on commit 0bdffd7

Please sign in to comment.