Skip to content

Commit

Permalink
Maintenance stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
derekwyatt committed Mar 1, 2011
1 parent c053372 commit aa46ea1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
8 changes: 0 additions & 8 deletions .gitignore
Expand Up @@ -4,11 +4,3 @@ tags
# Ignore Vim swap files # Ignore Vim swap files
.*.swp .*.swp
.*.swo .*.swo

# The following are projects I have out on github
vimruntime/vimfiles/bundle/vim-scala/*
vimruntime/vimfiles/bundle/vim-fswitch/*
vimruntime/vimfiles/bundle/vim-protodef/*

# Ignore Tim Pope's Git integration bundle
vimruntime/vimfiles/bundle/vim-fugitive/*
5 changes: 5 additions & 0 deletions after/ftplugin/scala.vim
@@ -0,0 +1,5 @@

setlocal textwidth=120
setlocal shiftwidth=2
setlocal softtabstop=2
setlocal expandtab
12 changes: 7 additions & 5 deletions doc/akka_info.txt
Expand Up @@ -280,11 +280,13 @@ There is a plus side here, though... the caller that receives the {Future}
need not be an {Actor}, as is the case in the !! call. Using the exact same need not be an {Actor}, as is the case in the !! call. Using the exact same
{SyncServerActor} defined above, we have: {SyncServerActor} defined above, we have:
!sc! !sc!
scala> val future = server !!! SyncGreetRequest("Hithere, SyncServerActor") scala> val future = server !!! SyncGreetRequest("Hithere, SyncServerActor")
future: akka.dispatch.Future[Nothing] = akka.dispatch.DefaultCompletableFuture@bf3fd22 future: akka.dispatch.Future[Nothing] =

akka.dispatch.DefaultCompletableFuture@bf3fd22
scala> future.result
res16: Option[Nothing] = Some(You said, 'Hithere, SyncServerActor', and I say 'Thanks') scala> future.result
res16: Option[Nothing] =
Some(You said, 'Hithere, SyncServerActor', and I say 'Thanks')
!/sc! !/sc!


Modelines: {{{1 Modelines: {{{1
Expand Down

0 comments on commit aa46ea1

Please sign in to comment.