Skip to content

Commit 9f93224

Browse files
committed
DAMN YOU!
1 parent fcd113b commit 9f93224

File tree

4 files changed

+12
-26
lines changed

4 files changed

+12
-26
lines changed

.travis.yml

+11-18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
services: docker
22
language: rust
3+
sudo: required
34
cache: cargo
45
before_cache:
56
- chmod -R a+r $HOME/.cargo
@@ -15,15 +16,7 @@ notifications:
1516
on_success: never
1617
on_failure: never
1718

18-
19-
# dist: trusty
20-
# language: rust
21-
# sudo: required
22-
# cache: cargo
23-
# before_cache:
24-
# - chmod -R a+r $HOME/.cargo
25-
26-
We need the ncurses headers to build
19+
# We need the ncurses headers to build
2720
addons:
2821
apt:
2922
packages:
@@ -44,16 +37,16 @@ matrix:
4437
if: branch =~ /^v\d+\.\d+\.\d+.*$/
4538
- env: TARGET=x86_64-unknown-freebsd DISABLE_TESTS=1
4639

47-
# before_install:
48-
# - openssl aes-256-cbc -K $encrypted_165e7c8ca552_key -iv $encrypted_165e7c8ca552_iv
49-
# -in ci/homebrew.priv.enc -out homebrew.priv -d
50-
# - set -e
51-
# - ls -l /usr/include/
52-
# - rustup self update
40+
before_install:
41+
- openssl aes-256-cbc -K $encrypted_165e7c8ca552_key -iv $encrypted_165e7c8ca552_iv
42+
-in ci/homebrew.priv.enc -out homebrew.priv -d
43+
- set -e
44+
- ls -l /usr/include/
45+
- rustup self update
5346

54-
# install:
55-
# - sh ci/install.sh
56-
# - source ~/.cargo/env || true
47+
install:
48+
- sh ci/install.sh
49+
- source ~/.cargo/env || true
5750

5851
script:
5952
- bash ci/script.sh

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ authors = ["Katharina Fey <kookie@spacekookie.de>"]
1010
clap = "2.29.*"
1111

1212
[dependencies.cursive]
13-
git = "https://github.com/gyscos/Cursive"
13+
git = "https://github.com/gyscos/Cursive" # todo bind 0.8
1414
# default-features = false
1515
# features = ["termion-backend"]

src/ui/input.rs

-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ impl Input {
9292
});
9393
}
9494

95-
9695
// pub fn register_move_down(
9796
// siv: &mut Cursive,
9897
// bf: Arc<Mutex<Workspace>>,

src/ui/workspace.rs

-6
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,5 @@ impl Workspace {
132132
}
133133

134134
self.dirty = true;
135-
// eprintln!(
136-
// "Pos: {}, Size: {}, State: {:?}",
137-
// self.select.pos,
138-
// self.select.size,
139-
// self.select.mode
140-
// );
141135
}
142136
}

0 commit comments

Comments
 (0)