[SOLVED] vim completion menu broken

Since I upgraded to the latest vim (version 7.3.138, using the gvim package), the completion menu seems to be broken.
Steps of replication:
1. Stand in directory containing files test{1,5}
2. Open vim
3. :e t<tab>
By now vim should show the completion menu saying that there are five files to choose from, but instead the cursor places itself in the file where I last left input, the command area is cleared and no completion is shown. If I enter anything, the cursor returns to the command line and the command line is redrawn with whatever I enter. If I press tab again, the cursor returns to the command area returns and redraws ":e test", nothing further happens.
The error appears in both terminal vim and in gvim, and persists even if I reinstall using the regular vim package. I ruled out my configs breaking it by resetting them to a couple of months ago, but it didn't help.
vim --version && pacman -Qi gvim:
http://paste.pocoo.org/show/358834/
Is anyone else getting this?
EDIT && SOLVED:
It was my configurations after all. "set wildmenu list:longest" made it break for some reason. Without it everything is peachy. \o/
Last edited by Daethorian (2011-03-24 10:49:26)

Since I upgraded to the latest vim (version 7.3.138, using the gvim package), the completion menu seems to be broken.
Steps of replication:
1. Stand in directory containing files test{1,5}
2. Open vim
3. :e t<tab>
By now vim should show the completion menu saying that there are five files to choose from, but instead the cursor places itself in the file where I last left input, the command area is cleared and no completion is shown. If I enter anything, the cursor returns to the command line and the command line is redrawn with whatever I enter. If I press tab again, the cursor returns to the command area returns and redraws ":e test", nothing further happens.
The error appears in both terminal vim and in gvim, and persists even if I reinstall using the regular vim package. I ruled out my configs breaking it by resetting them to a couple of months ago, but it didn't help.
vim --version && pacman -Qi gvim:
http://paste.pocoo.org/show/358834/
Is anyone else getting this?
EDIT && SOLVED:
It was my configurations after all. "set wildmenu list:longest" made it break for some reason. Without it everything is peachy. \o/
Last edited by Daethorian (2011-03-24 10:49:26)

Similar Messages

  • Lightroom trial doesn't show complete menu selections or import button.  Also get error message on launch:  An error occurred when attempting to change modules.  I am unable to find/see the following file to try renaming the SLCache and SLStore files:  Sy

    Lightroom trial doesn't show complete menu selections or import button.  Also get error message on launch:  An error occurred when attempting to change modules.  I am unable to find/see the following file to try renaming the SLCache and SLStore files:  System Library/Application Support/Adobe.  Any ideas?  I only have 16 days left on the trial and have been unable to get it to work on my Macbook Pro.  This is all I am seeing after Lightroom opens.  Thanks!

    Thanks to both of you for attempting to help.  I finally figured out what was wrong . . . it was a Permissions problem.  Very frustrating, but after scouring the troubleshooting tips I finally found the one that solved my problem.  I had to add a User and give it Read/Write privileges to Lightroom.  The file I had to add the User to was Hidden on my Mac, so that added an even bigger challenge to the mystery.  Only a few days left on my trial version!  I hope I have time to try it out!

  • [SOLVED]zsh completion config not being loaded but other settings work

    This seems like a slightly odd problem.  I've been using zsh quite happily for a while now and as far as I've been aware, my .zshrc has been loaded consistently and properly.
    Today I decided to add auto-completion for one of my own programs.  It works, BUT I have to manually `source ~/.zshrc` in each new terminal even after logging out and back in.  The `fpath` variable is not being read from the .zshrc when I log in or start a terminal/emulator, but if I manually source .zshrc it works fine.
    Here are the relevant files:
    ~/.zshenv
    #!/bin/zsh
    ZDOTDIR=~/.config/zsh
    typeset -U path
    path=($HOME/bin $HOME/scripts $path)
    export EDITOR=vim
    export DIRB=~/.local/share/DirB
    export LOCAL_PACKAGE_SOURCES=/home/ian/dl
    ~/.config/_zshrc
    # The following lines were added by compinstall
    zstyle ':completion:*' completer _complete _ignored
    zstyle :compinstall filename '/home/ian/.config/zsh/_zshrc'
    autoload -Uz promptinit colors
    colors
    promptinit
    # COMPLETION settings
    fpath=(~/.config/zsh/completion $fpath)
    autoload -Uz compinit
    compinit
    zstyle ':completion:*' menu select=2
    # Lines configured by zsh-newuser-install
    HISTFILE=~/.local/share/zshhistfile
    HISTSIZE=1000
    SAVEHIST=1000
    if ! [[ "${PATH}" =~ "^${HOME}/bin" ]]; then
    export PATH="${HOME}/bin:${PATH}"
    fi
    if ! [[ "${PATH}" =~ "^${HOME}/scripts" ]]; then
    export PATH="${HOME}/scripts:${PATH}"
    fi
    # history options:
    setopt append_history hist_ignore_dups hist_ignore_all_dups hist_ignore_space hist_no_store
    # background jobs:
    setopt notify
    # changing directory:
    setopt auto_cd auto_pushd pushd_silent
    # globbing:
    setopt extended_glob
    # unset:
    unsetopt beep flow_control
    # keymap: emacs
    bindkey -e
    # End of lines configured by zsh-newuser-install
    # make M-f and M-b stop at / in paths:
    export WORDCHARS=''
    source ~/.bash_profile
    source ~/.config/bash/aliases
    source ~/.config/zsh/alias_s
    source ~/.config/zsh/alias_g
    source ~/.config/bash/DirB
    source ~/.config/zsh/functions
    # prompt:
    PS1="%B%{$fg[black]%}::%{$fg[cyan]%}(%b%{$fg[cyan]%}%n@%m%B%{$fg[cyan]%})%{$fg[black]%}-%{$fg[cyan]%}(%b%{$fg[cyan]%}%T%B%{$fg[cyan]%})%{$fg[black]%}-%{$fg[cyan]%}[%b%{$fg[cyan]%}%h%B%{$fg[cyan]%}]%{$fg[black]%}-%{$fg[cyan]%}(%b%{$fg[yellow]%}%2~%B%{$fg[cyan]%})%{$fg[black]%}>%b %{$reset_color%}"
    The only changes I've made are the lines under "COMPLETION."
    Can anyone spot something in there to suggest why everything seems to work except the `fpath=(~/.config/zsh/completion $fpath)` line?
    Last edited by ibrunton (2015-06-09 22:43:24)

    This is what I use (note, different ZSHDOTDIR to you):
    # completions
    # add custom completion scripts
    fpath=(~/.zsh/completion $fpath)
    autoload -Uz compinit
    compinit
    zstyle ':completion:*' completer _complete _correct _approximate
    zstyle ':completion:*' expand prefix suffix
    zstyle ':completion:*' completer _expand_alias _complete _approximate
    zstyle ':completion:*' menu select
    zstyle ':completion:*' file-sort name
    zstyle ':completion:*' ignore-parents pwd
    zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
    zstyle ':completion:*:pacman:*' force-list always
    zstyle ':completion:*:*:pacman:*' menu yes select
    zstyle -e ':completion:*' hosts 'reply=(cent pi sent veles)'
    zstyle :compinstall filename '$HOME/.zsh/zshrc'

  • How to display complete menu tree for a particular SAP user in UI5

    Hi Experts,
    I am trying to display menu tree for a particular SAP user on click of button placed in shell content.
    I am referring this link
    Displaying the Complete Menu Tree - User Interface Add-On for SAP NetWeaver - SAP Library
    But I am not getting the exact process.
    Can anyone please provide some help.
    Thanks in advance.

    >
    cranjith kumar wrote:
    > I am displayed a user name and password columns in
    > screen painter.if i will not fill any one of the two fields
    > means then a message will be display.
    > My requirement is if i wont fill the "username field"
    > means then the cursor should not move to the
    > "password"  field (i.e we should not able to enter passwords)
    > and a message should be displayed to indicating that
    > user name is invalid.
    > Kindly send me the coding for this one immediately.....
    How about you immediately try to figure it out for yuorself?  Read the SAP help on screen development and search these forums.  Here's a hint, look at things like FIELD and CHAIN in your PAI...

  • [Solved] System completely broken after update

    Today while updating my system as usual something went south terribly fast
    Here's the pacman log of the update
    [2009-07-09 12:14] synchronizing package lists
    [2009-07-09 12:14] starting full system upgrade
    [2009-07-09 12:18] upgraded kernel-headers (2.6.29.3-1 -> 2.6.30.1-1)
    [2009-07-09 12:18] upgraded glibc (2.10.1-2 -> 2.10.1-3)
    [2009-07-09 12:18] upgraded binutils (2.19.1-4 -> 2.19.1-5)
    [2009-07-09 12:18] upgraded gcc-libs (4.4.0-4 -> 4.4.0-5)
    [2009-07-09 12:18] upgraded gcc (4.4.0-4 -> 4.4.0-5)
    [2009-07-09 12:18] upgraded libtool (2.2.6a-1 -> 2.2.6a-2)
    [2009-07-09 12:18] upgraded medit (0.9.4-7 -> 0.9.4-8)
    [2009-07-09 12:18] upgraded mercurial (1.3-2 -> 1.3-3)
    [2009-07-09 12:18] upgraded sed (4.2-1 -> 4.2.1-1)
    If I remember correctly the kernel-headers upgraded just fine, then with glibc something went wrong, I saw an error for glibc and some of the following packages that said something like:
    "error: scriptlet failed to execute correctly"
    After this the system became unresponsive and I could not even switch to to any consoles and I had to turn the pc off by force.
    Trying to reboot is not an option as it will stop with a kernel panic with the error just before saying:
    "kinit: /sbin/init: No such file or directory"
    The file is there, I have confirmed it with an install image, I have tried (pacman -r) to try to reinstall some of the packages but it didn't work. I have also tried (pacman -r -Sy base) and that fails too with the scriptlet error.
    This goes beyond what I can fix myself, any help solving this will be greatly appreciated.
    Edit:
    Fixed typos.
    I have also tried to chroot into the partition but it doesn't work complaining it can't find /bin/bash (which is there also).
    Meanwhile I have also tried to remove all base packages and reinstall them but it doesn't work too, the same scriptlet error, a clean install on another disk does work fine but I would like to avoid reinstalling everything again.
    Edit 2:
    Solved by reinstalling, couldn't afford to wait too long before finding a solution.
    Last edited by R00KIE (2009-07-10 08:35:26)

    Can't you installing anything ? it hears very badly
    pacman -Qo /sbin/init
    /sbin/init is owned by sysvinit-mod 2.86-2
    If any better idea, than install a working toolchain with manually, copy the binary of them to the desired /bin /sbin, etc.. library.

  • [SOLVED] X11 hid support broken on fresh macbook install

    Hi!
    The solution was elementary indeed, I was missing xf86-input-keyboard and xf86-input-mouse. (looooooooooool)
    What bugs me though, is how this could happen to an already working system. From what I remember I didn't touch those drivers on my previuos system, I guess I installed them and forgot about them, but why would they break from a system update? Anyway, I guess that's nobody's concern by now. Thread solved.
    Old title: X11 hid support completely broken after system update. Now, I've completely reinstalled the system but the error remains. Please read the post below.
    I've a problem with X11 support for input devices since running pacman -Syu 2 days ago. This post contains error logs and a description of my attempts to counter the problem. The hardware is a MacBook, first generation. I'm a novice linux user but seasoned with GNU and a quick learner. The solution to this might be simple, but google didn't give me anything usable. All forum threads I found were either unsolved or irrelevant. 
    This is what has passed. (long story short, may or may not be relevant, my current problem is explained below)
    * After the first reboot since the system update, X11 didn't give me anything except a movable cursor. The screen was completely black using the xmonad wm, and when using twm, it was completely distorted with blue patterns. I start searching for sources of the trouble.
    * ALSA and pommed complain about driver errors during boot. I can't read the messages because they skip by too quickly. I remove them from rc.conf because I prefer dealing with one problem at a time.
    * modprobe complained about framebuffer_blacklist.pacsave having an erroneous extension in /etc/modprobe.d. It actually loaded both the .conf and the .pacsave. I tried swapping between this .pacsave (is it the same or opposite of a .pacorig, btw?) and the .conf. Obviously modprobe stopped complaining when there was no erroneous extension, but I didn't notice it fixing anything else. I'm unsure whether the framebuffer is even relevant.
    * I decide that the problem didn't have anything to do with modprobe. I don't know what happened exactly during this phase, but for some strange reason, the graphics cease to be jumbled. twm starts the default programs, but is not interactive. I could move the mouse, but no mouse buttons were working. Keyboard not working at all.
    * I decide to wipe X11 and hal. I also rm -rf:ed /usr/share/hal, /etc/hal, /usr/share/X11 and /etc/X11 (yeah, I got angry).
    * Reinstalled X11 and hal. Also rm -rf:ed /usr/share/hal, /etc/X11 and /usr/share/X11 (I got really angry). Stuff works now! However, setxkbmap made everything break again, both mouse and keyboard. I read the output of startx and realise evdev hasn't been loaded, since /usr/share/X11/xkb/rules/evdev is missing. The whole folder structure /usr/share/X11/xkb is actually missing. I randomly hit the target and run pacman -S xkeyboard-configure, which creates the folder structure along with the evdev ruleset.
    * The keyboard does not work when using evdev. Temporarily renaming it so that it doesn't get loaded fixes the problem. If I'm not mistaken this makes X11 revert to not-hotplugged keyboard and mouse preferences in xorg.conf (which is auto-generated). The keyboard and mouse then works again (but, obviously, not setxkbmap, and I really need input hotplugging as a laptop user).
    * It's getting late, so I shutdown and go to bed.
    Waking up today, neither keyboard nor mouse is working - also when not using evdev! I've really no idea where to go from here. I've some output for you to analyze:
    xorg.conf (auto-generated except for some commented lines I tried)
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    # Section "ServerFlags"
    # Option "AutoAddDevices" "True"
    # Option "AllowEmptyInput" "False"
    # EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "dbe"
    Load "glx"
    Load "extmod"
    Load "dri2"
    Load "dri"
    Load "record"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    # Option "XkbOptions" "terminate:ctrl_alt_bksp" (this didn't work)
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "ColorKey" # <i>
    #Option "CacheLines" # <i>
    #Option "Dac6Bit" # [<bool>]
    #Option "DRI" # [<bool>]
    #Option "NoDDC" # [<bool>]
    #Option "ShowCache" # [<bool>]
    #Option "XvMCSurfaces" # <i>
    #Option "PageFlip" # [<bool>]
    Identifier "Card0"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Xorg.0.log
    X.Org X Server 1.6.2
    Release Date: 2009-7-7
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH i686
    Current Operating System: Linux robban 2.6.30-ARCH #1 SMP PREEMPT Sat Jul 4 11:13:08 UTC 2009 i686
    Build Date: 18 July 2009 08:27:13PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jul 22 18:07:42 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Card0"
    (**) |-->Input Device "Mouse0"
    (**) |-->Input Device "Keyboard0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Mouse0
    (WW) Disabling Keyboard0
    (II) Loader magic: 0x7a40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (--) using VT number 7
    (--) PCI:*(0:0:2:0) 8086:27a2:8086:7270 Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0x90380000/524288, 0x80000000/268435456, 0x90400000/262144, I/O @ 0x000020f0/8
    (--) PCI: (0:0:2:1) 8086:27a6:8086:7270 Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0x90300000/524288
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 2.7.99
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, IGD_GM, IGD_G, 965G, G35,
    965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    Mobile Intel® GM45 Express Chipset,
    Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41, IGDNG_D,
    IGDNG_M
    (II) Primary Device is: PCI 00@00:02:0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 0.1.0
    ABI class: X.Org Video Driver, version 5.0
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 7, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 7, (OK)
    drmOpenByBusid: drmOpenMinor returns 7
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (==) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GM
    (--) intel(0): Chipset: "945GM"
    (--) intel(0): Linear framebuffer at 0x80000000
    (--) intel(0): IO registers at addr 0x90380000 size 524288
    (WW) intel(0): libpciaccess reported 0 rom size, guessing 64kB
    (II) intel(0): the SDVO device with slave addr 70 is found on DVO 1 port
    (II) intel(0): 2 display pipes available.
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) intel(0): Output VGA using monitor section Monitor0
    (II) intel(0): Output LVDS has no monitor section
    (II) intel(0): I2C bus "LVDSDDC_C" initialized.
    (II) intel(0): Attempting to determine panel fixed mode.
    (II) intel(0): I2C device "LVDSDDC_C:E-EDID segment register" registered at address 0x60.
    (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
    (II) intel(0): EDID vendor "APP", prod id 40028
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" initialized.
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" registered at address 0x70.
    (II) intel(0): I2C bus "SDVOB DDC Bus" initialized.
    (II) intel(0): Output TMDS-1 has no monitor section
    (II) intel(0): SDVOB: device VID/DID: 04:AA.03, clock range 25.0MHz - 165.0MHz
    (II) intel(0): SDVOB: 1 input channel
    (II) intel(0): SDVOB: TMDS0 output reported
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" initialized.
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" registered at address 0x72.
    (II) intel(0): No SDVO device found on SDVOC
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" removed.
    (II) intel(0): Output TV has no monitor section
    (II) intel(0): Current clock rate multiplier: 1
    (II) intel(0): EDID vendor "APP", prod id 40028
    (II) intel(0): Output VGA disconnected
    (II) intel(0): Output LVDS connected
    (II) intel(0): Output TMDS-1 disconnected
    (II) intel(0): Output TV disconnected
    (II) intel(0): Using exact sizes for initial modes
    (II) intel(0): Output LVDS using initial mode 1280x800
    (II) intel(0): detected 256 kB GTT.
    (II) intel(0): detected 16124 kB stolen memory.
    (==) intel(0): video overlay key set to 0x101fe
    (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
    (==) intel(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) intel(0): Comparing regs from server start up to After PreInit
    (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd0000009
    (WW) intel(0): PP_STATUS before: on, ready, sequencing idle
    (WW) intel(0): PP_STATUS after: on, ready, sequencing on
    (WW) intel(0): Register 0x61110 (PORT_HOTPLUG_EN) changed from 0x00000000 to 0x00000020
    (WW) intel(0): Register 0x61114 (PORT_HOTPLUG_STAT) changed from 0x00000000 to 0x00000400
    (WW) intel(0): Register 0x70024 (PIPEASTAT) changed from 0x00000000 to 0x00000203
    (WW) intel(0): PIPEASTAT before: status:
    (WW) intel(0): PIPEASTAT after: status: VSYNC_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS
    (WW) intel(0): Register 0x71024 (PIPEBSTAT) changed from 0x00000202 to 0x80000202
    (WW) intel(0): PIPEBSTAT before: status: VSYNC_INT_STATUS VBLANK_INT_STATUS
    (WW) intel(0): PIPEBSTAT after: status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS
    (==) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) intel(0): Kernel reported 483584 total, 1 used
    (II) intel(0): I830CheckAvailableMemory: 1934332 kB available
    (II) intel(0): [DRI2] Setup complete
    (**) intel(0): Framebuffer compression enabled
    (**) intel(0): Tiling enabled
    (**) intel(0): SwapBuffers wait enabled
    (==) intel(0): VideoRam: 262144 KB
    (II) intel(0): Attempting memory allocation with tiled buffers.
    (II) intel(0): Tiled allocation successful.
    (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (II) UXA(0): Driver registered support for the following operations:
    (II) solid
    (II) copy
    (II) composite (RENDER acceleration)
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (II) intel(0): Current clock rate multiplier: 1
    (II) intel(0): adjusting plane->pipe mappings to allow for framebuffer compression
    (II) intel(0): Fixed memory allocation layout:
    (II) intel(0): 0x00000000-0x005fffff: compressed frame buffer (6144 kB, 0x000000007f000000 physical
    (II) intel(0): 0x00600000-0x00600fff: compressed ll buffer (4 kB, 0x000000007f600000 physical
    (II) intel(0): 0x00601000-0x0060afff: HW cursors (40 kB, 0x000000007f601000 physical
    (II) intel(0): 0x0060b000-0x0060bfff: overlay registers (4 kB, 0x000000007f60b000 physical
    (II) intel(0): 0x00fbf000: end of stolen memory
    (II) intel(0): 0x00fbf000-0x0f9f3fff: DRI memory manager (239828 kB)
    (II) intel(0): 0x10000000: end of aperture
    (II) intel(0): BO memory allocation layout:
    (II) intel(0): 0x00fbf000: start of memory manager
    (II) intel(0): 0x01000000-0x017fffff: front buffer (8192 kB) X tiled
    (II) intel(0): 0x0f9f4000: end of memory manager
    (WW) intel(0): ESR is 0x00000010, page table error
    (WW) intel(0): PGTBL_ER is 0x00000102, host pte data, display B pte
    (WW) intel(0): Existing errors found in hardware state.
    (II) intel(0): Selecting standard 18 bit TMDS pixel format.
    (II) intel(0): Output configuration:
    (II) intel(0): Pipe A is off
    (II) intel(0): Display plane B is now disabled and connected to pipe A.
    (II) intel(0): Pipe B is on
    (II) intel(0): Display plane A is now enabled and connected to pipe B.
    (II) intel(0): Output VGA is connected to pipe none
    (II) intel(0): Output LVDS is connected to pipe B
    (II) intel(0): Output TMDS-1 is connected to pipe none
    (II) intel(0): Output TV is connected to pipe none
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (II) intel(0): DPMS enabled
    (==) intel(0): Intel XvMC decoder disabled
    (II) intel(0): Set up textured video
    (II) intel(0): Set up overlay video
    (II) intel(0): direct rendering: DRI2 Enabled
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i915_dri.so
    (II) GLX: Initialized DRI2 GL provider for screen 0
    (II) intel(0): Setting screen physical size to 286 x 179
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 2.2.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) config/hal: Adding input device HID 05ac:1000
    (**) HID 05ac:1000: always reports core events
    (**) HID 05ac:1000: Device: "/dev/input/event2"
    (II) HID 05ac:1000: Found 5 mouse buttons
    (II) HID 05ac:1000: Found x and y relative axes
    (II) HID 05ac:1000: Configuring as mouse
    (**) HID 05ac:1000: YAxisMapping: buttons 4 and 5
    (**) HID 05ac:1000: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "HID 05ac:1000" (type: MOUSE)
    (**) HID 05ac:1000: (accel) keeping acceleration scheme 1
    (**) HID 05ac:1000: (accel) filter chain progression: 2.00
    (**) HID 05ac:1000: (accel) filter stage 0: 20.00 ms
    (**) HID 05ac:1000: (accel) set acceleration profile 0
    (II) config/hal: Adding input device HID 05ac:1000
    (**) HID 05ac:1000: always reports core events
    (**) HID 05ac:1000: Device: "/dev/input/event1"
    (II) HID 05ac:1000: Found keys
    (II) HID 05ac:1000: Configuring as keyboard
    (II) XINPUT: Adding extended input device "HID 05ac:1000" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Apple Computer Apple Internal Keyboard / Trackpad
    (**) Apple Computer Apple Internal Keyboard / Trackpad: always reports core events
    (**) Apple Computer Apple Internal Keyboard / Trackpad: Device: "/dev/input/event3"
    (II) Apple Computer Apple Internal Keyboard / Trackpad: Found keys
    (II) Apple Computer Apple Internal Keyboard / Trackpad: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Apple Computer Apple Internal Keyboard / Trackpad" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event15"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (WW) Apple Computer Apple Internal Keyboard / Trackpad: unable to handle keycode 464
    (II) Macintosh mouse button emulation: Close
    (II) UnloadModule: "evdev"
    (II) HID 05ac:1000: Close
    (II) UnloadModule: "evdev"
    (II) HID 05ac:1000: Close
    (II) UnloadModule: "evdev"
    (II) Apple Computer Apple Internal Keyboard / Trackpad: Close
    (II) UnloadModule: "evdev"
    (II) Video Bus: Close
    (II) UnloadModule: "evdev"
    startx_output.log (generated from startx &> startx_output.log)
    hostname: Host name lookup failure
    xauth: creating new authority file /root/.serverauth.5083
    X.Org X Server 1.6.2
    Release Date: 2009-7-7
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH i686
    Current Operating System: Linux robban 2.6.30-ARCH #1 SMP PREEMPT Sat Jul 4 11:13:08 UTC 2009 i686
    Build Date: 18 July 2009 08:27:13PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jul 22 18:07:42 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    Setting master
    expected keysym, got XF86_Switch_VT_1: line 8 of xfree86
    expected keysym, got XF86_Switch_VT_2: line 11 of xfree86
    expected keysym, got XF86_Switch_VT_3: line 14 of xfree86
    expected keysym, got XF86_Switch_VT_4: line 17 of xfree86
    expected keysym, got XF86_Switch_VT_5: line 20 of xfree86
    / ... (There are literally hundreds of lines like this, so I'm cutting most of them) ... /
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Multiple interpretations of "NoSymbol+AnyOfOrNone(all)"
    > Using last definition for duplicate fields
    / ... (The above two lines repeated about 20 times) .../
    expected keysym, got XF86Display: line 68 of pc
    expected keysym, got XF86KbdLightOnOff: line 69 of pc
    expected keysym, got XF86KbdBrightnessDown: line 70 of pc
    expected keysym, got XF86_Ungrab: line 90 of keypad
    expected keysym, got XF86_ClearGrab: line 96 of keypad
    expected keysym, got XF86AudioMedia: line 26 of inet
    expected keysym, got XF86AudioPrev: line 27 of inet
    expected keysym, got XF86MonBrightnessUp: line 1806 of inet
    expected keysym, got XF86MonBrightnessDown: line 1807 of inet
    Errors from xkbcomp are not fatal to the X server
    expected keysym, got XF86_Switch_VT_1: line 8 of xfree86
    expected keysym, got XF86_Switch_VT_2: line 11 of xfree86
    expected keysym, got XF86_Prev_VMode: line 54 of xfree86
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Multiple interpretations of "NoSymbol+AnyOfOrNone(all)"
    > Using last definition for duplicate fields
    / ... (Above two lines repeated alot again) ... /
    / ... (What looks like everything above repeated once) ... /
    expected keysym, got XF86MonBrightnessUp: line 1806 of inet
    expected keysym, got XF86MonBrightnessDown: line 1807 of inet
    Errors from xkbcomp are not fatal to the X server
    /root/.xmonad/xmonad-i386-linux: executeFile: does not exist (No such file or directory)
    [i](Yeah, I know this is bad, but twm doesn't work either. I'm quite sure it has nothing to do with xmonad)[/i]
    Warning: locale not supported by Xlib, locale set to C
    Warning: X locale modifiers not supported, using default
    Failed to open input method
    Warning: locale not supported by Xlib, locale set to C
    Warning: X locale modifiers not supported, using default
    Failed to open input method
    XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
    after 662 requests (662 known processed) with 5 events remaining.
    [i](This is from "killall X". My xinitrc has "sleep 8;killall X" appended since these problems started appearing)[/i]
    xterm: fatal IO error 11 (Resource temporarily unavailable) or KillClient on X server ":0.0"
    xinit: connection to X server lost.
    waiting for X server to shut down .Dropping master
    error setting MTRR (base = 0x80000000, size = 0x10000000, type = 1) Invalid argument (22)
    Output of pacman -Q: (maybe there are some conflicting drivers or something?)
    a52dec 0.7.4-4
    aalib 1.4rc5-6
    acl 2.2.47-2
    alsa-lib 1.0.20-1
    alsa-oss 1.0.17-1
    alsa-utils 1.0.20-2
    apache 2.2.11-3
    apr 1.3.5-1
    apr-util 1.3.7-1
    aspell 0.60.6-4
    at-spi 1.26.0-1
    atk 1.26.0-1
    attr 2.4.43-1
    aubio 0.3.2-3
    audiofile 0.2.6-4
    autoconf 2.63-1
    automake 1.11-1
    avahi 0.6.25-1
    bash 4.0.024-1
    bin86 0.16.17-4
    binutils 2.19.1-5
    bison 2.4.1-1
    blas 20070405-2
    bluez 4.39-1
    bzip2 1.0.5-4
    ca-certificates 20090709-1
    cabextract 1.2-2
    cairo 1.8.8-1
    cairomm 1.8.2-1
    cdargs 1.35-2
    cdparanoia 10.2-2
    chmlib 0.40-1
    cloog-ppl 0.15.3-1
    compositeproto 0.4-2
    confuse 2.6-1
    consolekit 0.3.0-5
    coreutils 7.4-1
    cpio 2.9-5
    cpufrequtils 005-2
    cracklib 2.8.13-2
    cryptsetup 1.0.6-3
    csup 20060318-5
    curl 7.19.5-2
    damageproto 1.1.0-2
    dash 0.5.5.1-2
    db 4.7.25.4-1
    db4.1 4.1.25-2
    dbus 1.2.14-1
    dbus-core 1.2.14-1
    dbus-glib 0.80-1
    dcron 3.2-4
    desktop-file-utils 0.15-1
    device-mapper 1.02.33-1
    dhcpcd 5.0.6-1
    dialog 1.1_20080819-2
    diffutils 2.8.1-6
    dmapi 2.2.10-1
    dmenu 4.0-1
    dmidecode 2.10-1
    dmxproto 2.2.2-2
    docbook-xml 4.5-2
    doxygen 1.5.9-1
    dri2proto 2.1-1
    dwm 5.6-1
    dzen2 0.8.5-4
    e2fsprogs 1.41.8-1
    ed 1.3-1
    eject 2.1.5-4
    emacs 22.3-2
    enca 1.9-4
    enchant 1.4.2-1
    esound 0.2.41-1
    eventlog 0.2.9-1
    exempi 2.1.0-1
    exiv2 0.18-1
    expat 2.0.1-2
    faac 1.28-1
    faad2 2.7-1
    fakeroot 1.12.4-1
    fam 2.7.0-14
    feh 1.3.4-5
    ffmpeg 0.5-1
    fftw 3.2.1-1
    file 5.03-2
    filesystem 2009.01-2
    findutils 4.4.2-1
    firefox 3.5.1-1
    fixesproto 4.0-3
    flac 1.2.1-1
    flashplugin 10.0.22.87-1
    flex 2.5.35-3
    fluidsynth 1.0.9-1
    fontcacheproto 0.1.2-2
    fontconfig 2.6.0-2
    fontsproto 2.0.2-2
    fox 1.6.36-1
    freetype2 2.3.9-2
    fribidi 0.19.2-1
    fuse 2.7.4-3
    gawk 3.1.6-3
    gc 7.1-1
    gcc 4.4.0-5.1
    gcc-libs 4.4.0-5
    gconf 2.26.2-2
    gdbm 1.8.3-6
    gen-init-cpio 2.6.17-3
    gettext 0.17-3
    ghc 6.10.3-1
    giblib 1.2.4-4
    giflib 4.1.6-3
    glib 1.2.10-7
    glib2 2.20.4-1
    glibc 2.10.1-3
    glibmm 2.20.1-1
    gmp 4.3.1-2
    gmrun 0.9.2-2
    gnutls 2.8.1-1
    gpm 1.20.6-1
    grep 2.5.4-3
    groff 1.20.1-2
    grub 0.97-15
    gsfonts 8.11-5
    gstreamer0.10 0.10.23-1
    gstreamer0.10-base 0.10.23-1
    gstreamer0.10-base-plugins 0.10.23-2
    gstreamer0.10-ffmpeg 0.10.7-1
    gstreamer0.10-good 0.10.15-1
    gtk 1.2.10-9
    gtk-engines 2.18.2-1
    gtk2 2.16.5-1
    gtkmm 2.16.0-1
    gvim 7.2.65-1
    gzip 1.3.12-6
    hal 0.5.12git20090421.4fc367-2
    hal-info 0.20090414-1
    haskell-utf8-string 0.3.5-1
    haskell-x11 1.4.5-1.2
    haskell-x11-xft 0.3-5
    hdparm 9.15-1
    heimdal 1.2.1-5
    herrie 2.2-2
    hicolor-icon-theme 0.10-2
    hunspell 1.2.8-1
    hwdetect 2009.07-1
    imlib2 1.4.2-3
    initscripts 2009.03-2
    inputproto 1.5.0-1
    intel-dri 7.5-1
    iputils 20071127-2
    irssi 0.8.13-1
    iso-codes 3.10.1-1
    jack-audio-connection-kit 0.116.2-2
    jdk 6u14-1
    jfsutils 1.1.14-1
    jre 6u14-1
    kbd 1.15-1
    kbproto 1.0.3-2
    kernel-headers 2.6.30.1-1
    kernel26 2.6.30.1-1
    kernel26-firmware 2.6.30-1
    klibc 1.5.15-3
    klibc-extras 2.5-4
    klibc-kbd 1.15.20080312-10
    klibc-module-init-tools 3.8-1
    klibc-udev 141-3
    ladspa 1.13-2
    lame 3.98.2-2
    lapack 3.2.1-1
    lcms 1.18-2
    less 429-1
    lesstif 0.95.0-3
    libao 0.8.8-2
    libarchive 2.7.0-2
    libart-lgpl 2.3.20-1
    libass 0.9.6-2
    libavc1394 0.5.3-3
    libbeagle 0.3.9-1
    libbonobo 2.24.1-1
    libcaca 0.99.beta16-1
    libcanberra 0.14-1
    libcap 2.16-3
    libcddb 1.3.2-1
    libcdio 0.81-2
    libcups 1.3.11-1
    libdaemon 0.13-2
    libdatrie 0.2.2-1
    libdca 0.0.5-1
    libdmx 1.0.2-2
    libdownload 1.3-3
    libdrm 2.4.12-1
    libdv 1.0.0-2
    libdvbpsi 0.1.6-3
    libdvdnav 4.1.3-1
    libdvdread 4.1.3-1
    libebml 0.7.8-1
    libexif 0.6.17-1
    libfontenc 1.0.4-2
    libftdi 0.15-3
    libgcrypt 1.4.4-2
    libgl 7.5-1
    libglade 2.6.4-1
    libgpg-error 1.6-1
    libgtop 2.26.1-1
    libical 0.43-1
    libice 1.0.5-1
    libid3tag 0.15.1b-3
    libidl2 0.8.13-1
    libiec61883 1.2.0-1
    libjpeg 7-1
    libldap 2.3.43-3
    liblo 0.25-1
    liblrdf 0.4.0-6
    libmad 0.15.1b-4
    libmatroska 0.8.1-2
    libmikmod 3.1.12-2
    libmng 1.0.10-2
    libmodplug 0.8.7-1
    libmp4v2 1.6-1
    libmpcdec 1.2.6-1
    libmpd 0.18.0-1
    libmpeg2 0.5.1-1
    libmtp 0.3.7-1
    libmysqlclient 5.1.36-1
    libnl 1.1-1
    libnotify 0.4.5-1.1
    libogg 1.1.3-2
    liboil 0.3.16-1
    libpcap 1.0.0-1
    libpciaccess 0.10.6-1
    libpng 1.2.38-1
    libproxy 0.2.3-1
    libraw1394 2.0.2-1
    libsamplerate 0.1.7-1
    libsasl 2.1.23-1
    libsexy 0.1.11-1
    libshout 2.2.2-3
    libsigc++2.0 2.2.3-1
    libsm 1.1.0-1
    libsndfile 1.0.20-3
    libtasn1 2.2-1
    libthai 0.1.12-1
    libtheora 1.0-1
    libtiff 3.8.2-5
    libtirpc 0.2.0-1
    libtool 2.2.6a-2
    libtorrent 0.12.2-2
    libtracker 0.6.95-1
    libunique 1.0.8-1
    libusb 0.1.12-3
    libv4l 0.5.99-1
    libvisual 0.4.0-2
    libvorbis 1.2.1rc1-2
    libwnck 2.26.2-1
    libx11 1.2.1-1
    libx86 1.1-2
    libxau 1.0.4-1
    libxaw 1.0.6-1
    libxcb 1.2-1
    libxcomposite 0.4.0-2
    libxcursor 1.1.9-2
    libxdamage 1.1.1-2
    libxdmcp 1.0.2-2
    libxext 1.0.5-2
    libxfce4util 4.6.1-1
    libxfcegui4 4.6.1-1
    libxfixes 4.0.3-2
    libxfont 1.4.0-1
    libxfontcache 1.0.4-2
    libxft 2.1.13-1
    libxi 1.2.1-1
    libxinerama 1.0.3-2
    libxkbfile 1.0.5-1
    libxklavier 3.9-2
    libxml2 2.7.3-2
    libxmu 1.0.4-2
    libxp 1.0.0-2
    libxpm 3.5.7-1
    libxrandr 1.3.0-1
    libxrender 0.9.4-2
    libxres 1.0.3-2
    libxslt 1.1.24-2
    libxspf 1.2.0-1
    libxss 1.1.3-1
    libxt 1.0.6-1
    libxtst 1.0.3-2
    libxv 1.0.4-1
    libxvmc 1.0.4-2
    libxxf86dga 1.0.2-2
    libxxf86misc 1.0.1-2
    libxxf86vm 1.0.2-1
    licenses 2.4-1
    links 2.2-2
    lirc-utils 0.8.5-1
    lm_sensors 3.1.1-1
    logrotate 3.7.8-1
    lrmi 0.10-1
    lua 5.1.4-4
    lvm2 2.02.48-1
    lzo2 2.03-1
    m4 1.4.13-1
    madwifi 0.9.4.3952-5
    madwifi-utils 0.9.4.3952-1
    mailx 8.1.1-7
    make 3.81-4
    man-db 2.5.5-2
    man-pages 3.21-1
    mcpp 2.7.2-2
    mdadm 2.6.9-1
    mesa 7.5-1
    mime-types 1.0-2
    mkinitcpio 0.5.25-1
    mlocate 0.22-1
    module-init-tools 3.8-1
    mozilla-common 1.4-1
    mozplugger 1.12.1-1
    mpd 0.14.2-1
    mpfr 2.4.1-1
    mysql 5.1.36-1
    mysql-clients 5.1.36-1
    nano 2.0.9-2
    ncurses 5.7-2
    net-tools 1.60-14
    netbeans 6.7-1
    nspr 4.8-1
    nss 3.12.3-1
    openssl 0.9.8k-4
    orbit2 2.14.17-1
    pacman 3.2.2-1
    pacman-mirrorlist 20090616-1
    pam 1.0.4-1
    pango 1.24.5-1
    pangomm 2.24.0-1
    patch 2.5.9-2
    pciutils 3.1.2-1
    pcmciautils 015-2
    pcre 7.9-1
    perl 5.10.0-6
    perl-xml-simple 2.18-2
    perlxml 2.36-1
    php 5.2.10-3
    pixman 0.14.0-2
    pkgconfig 0.23-1
    pm-utils 1.2.5-1
    policykit 0.9-9
    pommed 1.26-3
    popt 1.14-1
    ppl 0.10.2-2
    ppp 2.4.4-9
    printproto 1.0.4-1
    procinfo 19-3
    procps 3.2.8-1
    psmisc 22.7-1
    pycairo 1.8.6-1
    pygobject 2.18.0-1
    pygtk 2.14.1-4
    python 2.6.2-5
    python-gdata 1.3.1-1
    python-numpy 1.3.0-2
    qt 4.5.2-3
    rake 0.8.6-1
    randrproto 1.3.0-1
    raptor 1.4.18-1
    rarian 0.8.1-1
    readline 6.0.003-1
    recode 3.6-3
    recordproto 1.13.2-2
    reiserfsprogs 3.6.21-1
    renderproto 0.9.3-2
    rp-pppoe 3.10-1
    rpcbind 0.2.0-1
    rtorrent 0.8.2-3
    ruby 1.8.7_p174-1
    rubygems 1.3.3-1
    run-parts 3.1.3-1
    rxvt-unicode 9.06-2
    schismtracker 0.5rc1-1
    screen 4.0.3-8
    scrnsaverproto 1.1.0-2
    sdl 1.2.13-3
    sdl_image 1.2.7-2
    sdparm 1.03-2
    sed 4.2.1-1
    shadow 4.1.4.1-1
    shaman 1.0.9-1
    shared-mime-info 0.60-1
    smbclient 3.3.6-2
    sound-theme-freedesktop 0.2-1
    speex 1.2rc1-1.1
    sqlite3 3.6.15-2
    startup-notification 0.10-1
    sudo 1.7.2-1
    sysfsutils 2.1.0-5
    syslog-ng 3.0.3-1
    sysvinit 2.86-5
    t1lib 5.1.2-2
    taglib 1.5-1
    tar 1.22-1
    tcp_wrappers 7.6-10
    tdb 3.3.6-1
    terminus-font 4.28-1
    texinfo 4.13a-3
    ttf-dejavu 2.29-1
    tzdata 2009j-1
    udev 141-3
    unixodbc 2.2.14-2
    unrar 3.9.4-1
    unzip 6.0-4
    uriparser 0.7.5-1
    usbutils 0.84-1
    util-linux-ng 2.14.2-1
    vbetool 1.1-1
    vi 7.2.65-1
    videoproto 2.2.2-2
    vim 7.2.65-1.1
    vim-minibufexpl 6.3.2-4
    w3m 0.5.2-3
    wavpack 4.50.1-1
    wget 1.11.4-1
    which 2.20-1
    wireless_tools 29-3
    wpa_supplicant 0.6.9-2
    x264 20090416-1
    xbitmaps 1.0.1-2
    xcb-proto 1.4-1
    xcb-util 0.3.4-2
    xcursor-themes 1.0.1-2
    xextproto 7.0.5-1
    xf86-input-evdev 2.2.2-1
    xf86-input-synaptics 1.1.2-1
    xf86-video-intel 2.7.99.902-1
    xf86dgaproto 2.0.3-2
    xf86miscproto 0.9.2-2
    xf86vidmodeproto 2.2.2-2
    xfconf 4.6.1-1
    xfe 1.19.2-1
    xfsprogs 3.0.1-1
    xineramaproto 1.1.2-2
    xkeyboard-config 1.6-1
    xmlrpc-c 1.06.35-1
    xmobar 0.9.2-1
    xmonad 0.8.1-1.2
    xmonad-contrib 0.8.1-1.2
    xorg-apps 7.4-2
    xorg-font-utils 7.4-2
    xorg-fonts-100dpi 1.0.1-2
    xorg-fonts-75dpi 1.0.1-2
    xorg-fonts-alias 1.0.1-2
    xorg-fonts-encodings 1.0.2-3
    xorg-fonts-misc 1.0.0-4
    xorg-res-utils 1.0.3-3
    xorg-server 1.6.2-1
    xorg-server-utils 7.4-6
    xorg-twm 1.0.4-3
    xorg-utils 7.4-4
    xorg-xauth 1.0.3-1
    xorg-xinit 1.1.1-1
    xorg-xkb-utils 7.4-2
    xpacman 0.11-4
    xpdf 3.02_pl3-1
    xproto 7.0.15-1
    xterm 243-2
    xulrunner 1.9.1.1-1
    xvidcore 1.2.1-1
    xz-utils 4.999.8beta-4
    zenity 2.26.0-2
    zip 3.0-1.1
    zlib 1.2.3.3-3
    zsh 4.3.10-1
    zvbi 0.2.26-1
    Any help would be greatly appreciated! This is too much for me to handle by myself. I'm thinking of trying debian if I can't sort this out, so be a patriot!
    Love,
    sapht
    Last edited by sapht (2009-07-23 17:45:07)

    Alright, I got fed up and decided to reinstall the system.
    Only installed wireless_tools, madwifi, hal, xorg and xf86-video-intel.
    Edited /etc/X11/xorg.conf to select the intel video driver.
    The mouse and keyboard are still frozen.
    Here are some much cleaner Xorg.0.log, xorg.conf and startx_output.log files, I hope it will be easier for any readers of this post to find errors here:
    Output of startx:
    hostname: Host name lookup failure
    xauth: creating new authority file /root/.serverauth.4956
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    X.Org X Server 1.6.1.901 (1.6.2 RC 1)
    Release Date: 2009-5-8
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH i686
    Current Operating System: Linux datan 2.6.30-ARCH #1 SMP PREEMPT Sat Jul 4 11:13:08 UTC 2009 i686
    Build Date: 28 June 2009 11:20:52AM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jul 23 13:37:55 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    Setting master
    (again, this is where 'killall X' from xinitrc runs)
    XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
    after 507 requests (507 known processed) with 2 events remaining.
    xterm: fatal IO error 104 (Connection reset by peer) or KillClient on X server ":0.0"
    xinit: connection to X server lost.
    waiting for X server to shut down .Dropping master
    error setting MTRR (base = 0x80000000, size = 0x10000000, type = 1) Invalid argument (22)
    xorg.conf
    Section "Device"
    Identifier "Card0"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    EndSection
    # Section "ServerLayout"
    # Identifier "X.org Configured"
    # Screen 0 "Screen0" 0 0
    # InputDevice "Mouse0" "CorePointer"
    # InputDevice "Keyboard0" "CoreKeyboard"
    # EndSection
    # Section "Files"
    # ModulePath "/usr/lib/xorg/modules"
    # FontPath "/usr/share/fonts/misc"
    # FontPath "/usr/share/fonts/100dpi:unscaled"
    # FontPath "/usr/share/fonts/75dpi:unscaled"
    # FontPath "/usr/share/fonts/TTF"
    # FontPath "/usr/share/fonts/Type1"
    # EndSection
    # Section "Module"
    # Load "extmod"
    # Load "glx"
    # Load "record"
    # Load "dri"
    # Load "dri2"
    # Load "dbe"
    # EndSection
    And Xorg.0.log:
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    X.Org X Server 1.6.1.901 (1.6.2 RC 1)
    Release Date: 2009-5-8
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH i686
    Current Operating System: Linux datan 2.6.30-ARCH #1 SMP PREEMPT Sat Jul 4 11:13:08 UTC 2009 i686
    Build Date: 28 June 2009 11:20:52AM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jul 23 13:33:48 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) No Layout section. Using the first Screen section.
    (==) No screen section available. Using defaults.
    (**) |-->Screen "Default Screen Section" (0)
    (**) | |-->Monitor "<default monitor>"
    (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    (**) | |-->Device "Card0"
    (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/TTF" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/Type1" does not exist.
    Entry deleted from font path.
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    built-ins
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (II) Loader magic: 0x640
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (--) using VT number 7
    (--) PCI:*(0:0:2:0) 8086:27a2:8086:7270 Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0x90380000/524288, 0x80000000/268435456, 0x90400000/262144, I/O @ 0x000020f0/8
    (--) PCI: (0:0:2:1) 8086:27a6:8086:7270 Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0x90300000/524288
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.1.901, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.1.901, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.1.901, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.1.901, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.1.901, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.1.901, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.6.1.901, module version = 2.7.99
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, IGD_GM, IGD_G, 965G, G35,
    965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    Mobile Intel® GM45 Express Chipset,
    Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41, IGDNG_D,
    IGDNG_M
    (II) Primary Device is: PCI 00@00:02:0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.6.1.901, module version = 0.1.0
    ABI class: X.Org Video Driver, version 5.0
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: drmOpenMinor returns 8
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    (==) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GM
    (--) intel(0): Chipset: "945GM"
    (--) intel(0): Linear framebuffer at 0x80000000
    (--) intel(0): IO registers at addr 0x90380000 size 524288
    (WW) intel(0): libpciaccess reported 0 rom size, guessing 64kB
    (--) intel(0): Using UXA for acceleration
    (II) intel(0): 2 display pipes available.
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) intel(0): Output VGA has no monitor section
    (II) intel(0): Output LVDS has no monitor section
    (II) intel(0): I2C bus "LVDSDDC_C" initialized.
    (II) intel(0): Attempting to determine panel fixed mode.
    (II) intel(0): I2C device "LVDSDDC_C:E-EDID segment register" registered at address 0x60.
    (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
    (II) intel(0): EDID vendor "APP", prod id 40028
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" initialized.
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" registered at address 0x70.
    (II) intel(0): I2C bus "SDVOB DDC Bus" initialized.
    (II) intel(0): Output TMDS-1 has no monitor section
    (II) intel(0): SDVOB: device VID/DID: 04:AA.03, clock range 25.0MHz - 165.0MHz
    (II) intel(0): SDVOB: 1 input channel
    (II) intel(0): SDVOB: TMDS0 output reported
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" initialized.
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" registered at address 0x72.
    (II) intel(0): No SDVO device found on SDVOC
    (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" removed.
    (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" removed.
    (II) intel(0): Output TV has no monitor section
    (II) intel(0): Current clock rate multiplier: 1
    (II) intel(0): EDID vendor "APP", prod id 40028
    (II) intel(0): Output VGA disconnected
    (II) intel(0): Output LVDS connected
    (II) intel(0): Output TMDS-1 disconnected
    (II) intel(0): Output TV disconnected
    (II) intel(0): Using exact sizes for initial modes
    (II) intel(0): Output LVDS using initial mode 1280x800
    (II) intel(0): detected 256 kB GTT.
    (II) intel(0): detected 16124 kB stolen memory.
    (==) intel(0): video overlay key set to 0x101fe
    (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
    (==) intel(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.1.901, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) intel(0): Comparing regs from server start up to After PreInit
    (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd0000009
    (WW) intel(0): PP_STATUS before: on, ready, sequencing idle
    (WW) intel(0): PP_STATUS after: on, ready, sequencing on
    (WW) intel(0): Register 0x61110 (PORT_HOTPLUG_EN) changed from 0x00000000 to 0x00000020
    (WW) intel(0): Register 0x61114 (PORT_HOTPLUG_STAT) changed from 0x00000000 to 0x00000400
    (WW) intel(0): Register 0x70024 (PIPEASTAT) changed from 0x00000000 to 0x00000203
    (WW) intel(0): PIPEASTAT before: status:
    (WW) intel(0): PIPEASTAT after: status: VSYNC_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS
    (WW) intel(0): Register 0x71024 (PIPEBSTAT) changed from 0x00000202 to 0x80000202
    (WW) intel(0): PIPEBSTAT before: status: VSYNC_INT_STATUS VBLANK_INT_STATUS
    (WW) intel(0): PIPEBSTAT after: status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS
    (==) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) intel(0): Kernel reported 483584 total, 1 used
    (II) intel(0): I830CheckAvailableMemory: 1934332 kB available
    (II) intel(0): [DRI2] Setup complete
    (**) intel(0): Framebuffer compression enabled
    (**) intel(0): Tiling enabled
    (==) intel(0): VideoRam: 262144 KB
    (II) intel(0): Attempting memory allocation with tiled buffers.
    (II) intel(0): Tiled allocation successful.
    (II) intel(0): adjusting plane->pipe mappings to allow for framebuffer compression
    (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (II) UXA(0): Driver registered support for the following operations:
    (II) solid
    (II) copy
    (II) composite (RENDER acceleration)
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (II) intel(0): Current clock rate multiplier: 1
    (II) intel(0): Fixed memory allocation layout:
    (II) intel(0): 0x00000000-0x005fffff: compressed frame buffer (6144 kB, 0x000000007f000000 physical
    (II) intel(0): 0x00600000-0x00600fff: compressed ll buffer (4 kB, 0x000000007f600000 physical
    (II) intel(0): 0x00601000-0x0060afff: HW cursors (40 kB, 0x000000007f601000 physical
    (II) intel(0): 0x0060b000-0x0060bfff: overlay registers (4 kB, 0x000000007f60b000 physical
    (II) intel(0): 0x00fbf000: end of stolen memory
    (II) intel(0): 0x00fbf000-0x0f9f3fff: DRI memory manager (239828 kB)
    (II) intel(0): 0x10000000: end of aperture
    (II) intel(0): BO memory allocation layout:
    (II) intel(0): 0x00fbf000: start of memory manager
    (II) intel(0): 0x01000000-0x017fffff: front buffer (8192 kB) X tiled
    (II) intel(0): 0x0f9f4000: end of memory manager
    (WW) intel(0): ESR is 0x00000010, page table error
    (WW) intel(0): PGTBL_ER is 0x00000102, host pte data, display B pte
    (WW) intel(0): Existing errors found in hardware state.
    (II) intel(0): Selecting standard 18 bit TMDS pixel format.
    (II) intel(0): Output configuration:
    (II) intel(0): Pipe A is off
    (II) intel(0): Display plane B is now disabled and connected to pipe A.
    (II) intel(0): Pipe B is on
    (II) intel(0): Display plane A is now enabled and connected to pipe B.
    (II) intel(0): Output VGA is connected to pipe none
    (II) intel(0): Output LVDS is connected to pipe B
    (II) intel(0): Output TMDS-1 is connected to pipe none
    (II) intel(0): Output TV is connected to pipe none
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (II) intel(0): DPMS enabled
    (==) intel(0): Intel XvMC decoder disabled
    (II) intel(0): Set up textured video
    (II) intel(0): Set up overlay video
    (II) intel(0): direct rendering: DRI2 Enabled
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i915_dri.so
    (II) GLX: Initialized DRI2 GL provider for screen 0
    (II) intel(0): Setting screen physical size to 286 x 179
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 2.2.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) config/hal: Adding input device HID 05ac:1000
    (**) HID 05ac:1000: always reports core events
    (**) HID 05ac:1000: Device: "/dev/input/event2"
    (II) HID 05ac:1000: Found 5 mouse buttons
    (II) HID 05ac:1000: Found x and y relative axes
    (II) HID 05ac:1000: Configuring as mouse
    (**) HID 05ac:1000: YAxisMapping: buttons 4 and 5
    (**) HID 05ac:1000: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "HID 05ac:1000" (type: MOUSE)
    (**) HID 05ac:1000: (accel) keeping acceleration scheme 1
    (**) HID 05ac:1000: (accel) filter chain progression: 2.00
    (**) HID 05ac:1000: (accel) filter stage 0: 20.00 ms
    (**) HID 05ac:1000: (accel) set acceleration profile 0
    (II) config/hal: Adding input device HID 05ac:1000
    (**) HID 05ac:1000: always reports core events
    (**) HID 05ac:1000: Device: "/dev/input/event1"
    (II) HID 05ac:1000: Found keys
    (II) HID 05ac:1000: Configuring as keyboard
    (II) XINPUT: Adding extended input device "HID 05ac:1000" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Apple Computer Apple Internal Keyboard / Trackpad
    (**) Apple Computer Apple Internal Keyboard / Trackpad: always reports core events
    (**) Apple Computer Apple Internal Keyboard / Trackpad: Device: "/dev/input/event3"
    (II) Apple Computer Apple Internal Keyboard / Trackpad: Found keys
    (II) Apple Computer Apple Internal Keyboard / Trackpad: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Apple Computer Apple Internal Keyboard / Trackpad" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event15"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) Macintosh mouse button emulation: Close
    (II) UnloadModule: "evdev"
    (II) HID 05ac:1000: Close
    (II) UnloadModule: "evdev"
    (II) HID 05ac:1000: Close
    (II) UnloadModule: "evdev"
    (II) Apple Computer Apple Internal Keyboard / Trackpad: Close
    (II) UnloadModule: "evdev"
    (II) Video Bus: Close
    (II) UnloadModule: "evdev"
    Reading Xorg.0.log myself, I find nothing that would imply the input devices have been erroneosly loaded. What is going on? Surely I must have missed something?
    Best regards,
    sapht

  • [Solved][VIM] E484: Can't open file syntax.vim

    Hi all,
    I've installed Archlinux few days ago on my netbook and yesterday i decided to configure Vim using plugins.
    During plugins configuration, i messed up and i decided to revome all Vim files in my ~ folder in order to restart configuration.
    However, since I've executed the `rm -R .vim .vimrc .viminfo` command, I can't re-activate Vim's syntax coloration using `syntax on` into my .vimrc file nor into Vim directly.
    Here is the error message when I start Vim :
    Error detected while processing /home/romain/.vimrc:
    line 1:
    E484: Can't open file /home/romain/.vim/syntax/syntax.vim
    Press ENTER or type command to continue
    I've found this topic on BBS which seems to be the same problem as me but reinstalling vim or vi doesn't solve this problem.
    I've tried to copy this syntax.vim file from /usr/share/vim/vim73/syntax/syntax.vim but it doesn't solve the problem and I want a clean solution without hacking my ~ folder ; moreover, this bug also appears being root while I haven't configured vim with the root account so it may be a problem into Vim's installation folders or something.
    Thanks for your help and sorry I my english contains mistakes,
    MicroJoe.
    Last edited by MicroJoe (2012-06-14 16:16:45)

    This is the output :
    VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Jun 7 2012 00:41:40)
    Rustines incluses : 1-547
    Compilé par ArchLinux
    Grosse version sans interface graphique.
    Fonctionnalités incluses (+) ou non (-) :
    +arabic +autocmd -balloon_eval -browse ++builtin_terms +byte_offset +cindent
    -clientserver -clipboard +cmdline_compl +cmdline_hist +cmdline_info +comments
    +conceal +cryptv +cscope +cursorbind +cursorshape +dialog_con +diff +digraphs
    -dnd -ebcdic +emacs_tags +eval +ex_extra +extra_search +farsi +file_in_path
    +find_in_path +float +folding -footer +fork() +gettext -hangul_input +iconv
    +insert_expand +jumplist +keymap +langmap +libcall +linebreak +lispindent
    +listcmds +localmap -lua +menu +mksession +modify_fname +mouse -mouseshape
    +mouse_dec +mouse_gpm -mouse_jsbterm +mouse_netterm -mouse_sysmouse
    +mouse_xterm +mouse_urxvt +multi_byte +multi_lang -mzscheme -netbeans_intg
    +path_extra +perl +persistent_undo +postscript +printer -profile -python
    -python3 +quickfix +reltime +rightleft -ruby +scrollbind +signs +smartindent
    -sniff +startuptime +statusline -sun_workshop +syntax +tag_binary
    +tag_old_static -tag_any_white -tcl +terminfo +termresponse +textobjects +title
    -toolbar +user_commands +vertsplit +virtualedit +visual +visualextra +viminfo
    +vreplace +wildignore +wildmenu +windows +writebackup -X11 -xfontset -xim -xsmp
    -xterm_clipboard -xterm_save
    fichier vimrc système : "/etc/vimrc"
    fichier vimrc utilisateur : "$HOME/.vimrc"
    fichier exrc utilisateur : "$HOME/.exrc"
    $VIM par défaut : "/usr/share/vim"
    Compilation : gcc -c -I. -Iproto -DHAVE_CONFIG_H -I/usr/local/include -march=i686 -mtune=generic -pipe -fstack-protector --param=ssp-buffer-size=4 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
    Édition de liens : gcc -Wl,-E -Wl,-rpath,/usr/lib/perl5/core_perl/CORE -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -L/usr/local/lib -Wl,--as-needed -o vim -lm -lncurses -lacl -lattr -lgpm -ldl -Wl,-E -Wl,-rpath,/usr/lib/perl5/core_perl/CORE -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -fstack-protector -L/usr/local/lib -L/usr/lib/perl5/core_perl/CORE -lperl -lnsl -ldl -lm -lcrypt -lutil -lpthread -lc
    (I've noticed that some part were in French but I hope that it'll not be a problem).

  • [SOLVED]Remap my menu key in Xorg

    Hi, everyone!
    I have a menu key of no use on my keyboard, and I want to use it. So I decide to remap it. I want to do this mapping:
    menu + 1 => F1
    menu + 2 => F2
    menu + 3 => F3
    menu + 4 => F4
    menu + 5 => F5
    menu + 6 => F6
    menu + 7 => F7
    menu + 8 => F8
    menu + 9 => F9
    menu + 0 => F10
    menu + - => F11
    menu + + => F12
    menu + w => ArrowUp
    menu + d => ArrowDown
    menu + a => ArrowLeft
    menu + d => ArrowRight
    menu + j => PageDown
    menu + k => PageUp
    menu + m => End
    menu + , => Home
    This means if I press menu key and 1 at once, it equals to F1. It seems that Xmodmap can't be suitable because it can't map combination keys. Do you have any idea of the way to do it?
    Thank you.
    Last edited by Maxfan Zone (2013-06-30 00:33:49)

    Hi, I made some progress, the problem is partly solved.
    In ~/.Xmodmap:
    xmodmap -e "add mod3 = Menu"
    In ~/.config/sxhkd/sxhkdrc:
    # don't take action if I press Menu
    Menu
    true
    mod3 + 1
    xdotool key --clearmodifiers F1
    mod3 + 2
    xdotool key --clearmodifiers F2
    mod3 + 3
    xdotool key --clearmodifiers F3
    mod3 + 4
    xdotool key --clearmodifiers F4
    mod3 + 5
    xdotool key --clearmodifiers F5
    mod3 + 6
    xdotool key --clearmodifiers F6
    mod3 + 7
    xdotool key --clearmodifiers F7
    mod3 + 8
    xdotool key --clearmodifiers F8
    mod3 + 9
    xdotool key --clearmodifiers F9
    mod3 + 0
    xdotool key --clearmodifiers F10
    mod3 + minus
    xdotool key --clearmodifiers F11
    mod3 + equal
    xdotool key --clearmodifiers F12
    mod3 + w
    xdotool key --clearmodifiers Up
    mod3 + s
    xdotool key --clearmodifiers Down
    mod3 + a
    xdotool key --clearmodifiers Left
    mod3 + d
    xdotool key --clearmodifiers Right
    mod3 + j
    xdotool key --clearmodifiers Page_Down
    mod3 + k
    xdotool key --clearmodifiers Page_Up
    mod3 + m
    xdotool key --clearmodifiers End
    mod3 + comma
    xdotool key --clearmodifiers Home
    And run sxhkd(it's in AUR), see it's working.
    Note some part also need fixing.
    Greatly thanks for WonderWoofy, Trilby and 2ManyDogs.
    EDIT: Now it is completely solved.
    Last edited by Maxfan Zone (2013-06-30 00:30:08)

  • [SOLVED] VIM: different syntax highlighting for new vs existing file

    I've had this minor nagging issue for a while that I've been trying to figure out, but I just don't know where to look.
    It is most obvious with LaTeX files (*.tex).  When I create a new file with "vim file.tex" it is recognized as a latex file and I get syntax highlighting, but it seems odd, or off.  When I close then reopen the same file, it gets "propper" syntax highlighting.
    I gather that this must be because of the two different mechanisms for matching the syntax type: filename versus content.  When the file is new, vim only uses the extension.  Once there is a latex comand (e.g., "\documentclass{article}") it recognizes it as something else and the highlighting style is different.
    It turns out just by actually elaborating exactly what the problem was, I was able to find the solution.  I looked for how vim recognizes the files, and found two relevant lines in /usr/share/vim/vim73/filetype.vim on lines 2093 and 2094.  Apparently the .tex filetype is not the same as .latex and others.  I changed it so it was, and I got the desired behavior.
    I thought about just not posting this - but it may be useful for others.

    You're right about it being overridden.  This change should be able to be placed in ~/.vimrc though.
    Well  that was foolish - I should have read the comments right below in that file.  It says exactly how to set it in vimrc.  I've now added the following to my ~/.vimrc and this is completely solved without modifying the /usr/... file.
    let g:tex_flavor = "tex"
    Last edited by Trilby (2013-03-29 16:11:26)

  • [self-SOLVED]vim + lilypond syntax highlighting

    I'm trying to get vim to use syntax highlighting in lilypond files. Apparently lilypond comes with the necessary files, but I have not been able to make vim find them (?). I am not very experienced with vi(m), so there might be something wrong with my setup.
    I have, of course, both vim and lilypond installed. The files for lilypond syntax highlighting are in subdirectories of /usr/share/lilypond/2.12.3/vim/. Vim syntax highlighting works for other files, such as C++, HTML, etc., so no problem there. My ~/.vimrc file contains
    set runtimepath+=/usr/share/lilypond/2.12.3/vim/
    as per instruction given in http://lilypond.org/doc/v2.12/Documenta … m/Vim-mode (and the path is correctly modified). But when I open a lilypond file (with the correct .ly suffix) all I get is black and white. What's the problem?
    [EDIT: Oh heck, nevermind! Apparently I was getting too tired to read instructions properly. Was missing the ~/.vim/filetype.vim file described in the above link.]
    Last edited by lotuskip (2010-04-12 18:33:42)

    You're right about it being overridden.  This change should be able to be placed in ~/.vimrc though.
    Well  that was foolish - I should have read the comments right below in that file.  It says exactly how to set it in vimrc.  I've now added the following to my ~/.vimrc and this is completely solved without modifying the /usr/... file.
    let g:tex_flavor = "tex"
    Last edited by Trilby (2013-03-29 16:11:26)

  • [solved] vim ftplugin vim-latexsuite doesn't load changes with chars

    Hello!
    I'd like to use some european characters and I found this thread.
    Unfortunately I still get "/mathbf{}" when I type the ã. (My problem is the ö but I think if I manage to have the ã it will work with ö...)
    The second problem is that I have to press escape twice to go to normal mode in a .tex file.
    (In the other files one press is enough.)
    All these troubles happen only on my x86_64 desktop.
    I have vim-latexsuit-svn 1106-1 on both laptop and desktop from the AUR.
    On my i686 laptop everything works fine with the 'default' .vimrc advised in the vim-latexsuite-manual.
    There is also a different mapleader for compiling by default. (Which is not as annoying as the ö problem.)
    I also get the ö-trouble when I log in from the laptop to my desktop.
    Why are there so much differences?
    I only remember having put some "set winaltkeys=no" in the wrong files on my laptop before I understood where is the right place.
    (Where everything works fine.)
    Here's my .vimrc
    1 set tabstop=2
    2 set number
    3
    4 syntax on
    5 filetype plugin on
    6 filetype indent on
    7 set grepprg=grep\ -nH\ $*
    8 let g:tex_flavor = "latex"
    9 set runtimepath=~/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim72,/usr/share/vim/vimfiles/after,~/.vim/after
    10 "To solve the propleme with vim-latexsuite has with ã and â
    11 imap <buffer> <silent> <M-C> <Plug>Tex_MathCal
    12 imap <buffer> <silent> <M-B> <Plug>Tex_MathBF
    13 imap <buffer> <leader>it <Plug>Tex_InsertItemOnThisLine
    14 imap <buffer> <silent> <M-A> <Plug>Tex_InsertItem
    15 "imap <buffer> <silent> <M-E> <Plug>Tex_InsertItem
    16 "imap <buffer> <silent> <M-e> <Plug>Tex_InsertItemOnThisLine
    17 imap <buffer> <silent> <Plug>Traditional <Plug>Traditional
    18 map <buffer> <silent> é é
    19 map <buffer> <silent> á á
    20 map <buffer> <silent> ã ã
    21 "imap ã <Plug>Tex_MathCal
    22 "imap é <Plug>Traditional
    ~/.vim/ftplugin/tex.vim
    1 set winaltkeys=no
    2
    3 let g:Tex_AdvancedMath = 0
    4 let g:Tex_SmartKeyQuote = 0
    5 let g:Tex_SmartKeyQuote = 0
    6
    7 imap <C-b> <Plug>Tex_MathBF
    8 imap <C-c> <Plug>Tex_MathCal
    9 imap <C-l> <Plug>Tex_LeftRight
    ~/.vim/after/ftplugin/tex.vim
    (The macros of call IMAP work well. When I type `ö I also get a \mathbf)
    1 call IMAP('`w', '\omega', 'tex')
    2 call IMAP('`j', '\cdot', 'tex')
    3 call IMAP('`A', '\forall', 'tex')
    4 call IMAP('`E', '\exists', 'tex')
    5 call IMAP('`ö', 'ö', 'tex')
    6
    7 let g:Tex_AdvancedMath = 0
    8 imap <C-b> <Plug>Tex_MathBF
    9 imap <C-c> <Plug>Tex_MathCal
    10 imap <C-l> <Plug>Tex_LeftRight
    runtimepath:
    runtimepath=~/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim72,/usr/share/vim/vimfiles/after,~/.vim/after
    Last edited by Maximalminimalist (2010-05-30 17:00:03)

    I just removed vim, vim-auctex (didn't remember there was this...) and vim-latexsuite and reinstalled vim and vim-latexsuite.
    I was obviously using a vim-auctex macro and I didn't know it... (This was a memorable lesson for removing packages you don't need. )
    I realized that the Esc-issue happens if a placeholder is still active. Is it possible to change this behaviour? (I won't really care about that. => [solved])
    Last edited by Maximalminimalist (2010-05-30 16:59:32)

  • File menu broken in 2014.02

    Premiere Pro has been locking up when i go to the file menu after playing a video. The menu will not display or will show an application isn't responding error.
    All the other menus work apart from the File menu, When i have attempted to get a screenshot of the problem happening the print screen function also stops working. (all functionality stops working when the file menu is open causing the OS to grind to a hault, this feels like a memory leak.)
    What have i done?
    Reinstalled Adobe Premiere (Clean install using the uninstaller tool.)
    Reinstalled the drivers using a clean installation.
    Reinstalled depedencies such as Quicktime and VCs.
    What version of Premiere Pro? Include the minor version number (e.g., Premiere Pro CS5.5 with the 5.5.2 update).:  8.2.0 (65) build (Premiere Pro CC 2014.2)
    Have you installed the recent updates? (If not, you should. They fix a lot of problems.) Yes.
    What operating system? This should include specific minor version numbers, like "Mac OSX v10.6.8"---not just "Mac". Win 8.1 64 bit
    What kind(s) of source footage? When telling about your source footage, tell us about the codecs, not just the container types. For example, "H.264 in a .mov container", not just "QuickTime". H.264 in a mp4 container.
    If you are getting error message(s), what is the full text of the error message(s)? No. (Just having lock ups)
    What were you doing when the problem occurred?  (Playing a video followed by trying to go to the file menu. the file menu drops down however the file menu isn't displaying. This can make the device lock up completely while it waits for a response from Premiere Pro CC.)
    Has this ever worked before?  Yes (for a very long time!)
    What other software are you running?  N/A
    Do you have any third-party effects or codecs installed?  N/A
    Tell us about your computer hardware. Be especially certain to tell us about third-party I/O hardware (e.g., AJA, Matrox, Blackmagic, MOTU). N/A
    Are you using Mercury Playback Engine GPU Acceleration?  Yes using the latest 347.09 driver set.
    Does the problem only happen with your final output, with previews, or both? this affects the program.

    H:\java\misc\forums>java CurDir
    H:\java\misc\forums exists? false
    H:\java\misc\forums exists? true
    public class CurDir
         public static void main(String [] arg) {
              File curdir = new File("");
              curdir = new File(curdir.getAbsolutePath());
    }I think what may be happening here is that, in the first case, you are selecting a file named "" in the current directory (not the directory itself). The absolute path name of this is then given as a string: "H:\java\misc\forums\" + "" (directory + file name). However, this string (when concatenated) represents a directory in the second case. That is, the second one is the current directory, while the first one is a file "" in the current directory ("" would not be a valid file). Internally, File contains a name sequence, representing the hierarchy of directory and file names. My guess is that in one case the hierarchy is {"H:", "java", "misc", "forums", ""} and the other {"H:", "java", "misc", "forums"}; see the difference?
    You can test this out using File.getName() or File.getParent() to see if they represent different things:
    File firstFile = new File("");
    File secondFile = new File(firstFile.getAbsolutePath());
    System.out.println("Name of first file:    " + firstFile.getName());
    System.out.println("Name of second file:   " + secondFile.getName());
    System.out.println("Parent of first file:  " + firstFile.getParent());
    System.out.println("Parent of second file: " + firstFile.getParent());If you are looking to get the current directory, you may want to use "." instead of "". Alternatively, you can get the current working directory from the system properties.

  • [SOLVED] `Vim/Gvim: set mouse=a works only in Gvim?

    I'm diving into the world of (g)vim this weekend and although I'm starting to get the hang of things, I seem to be having a problem with the mouse functionality.  I have set mouse=a specified in my .vimrc and gvim respects it, but when I run vi in a terminal session (urxvt) I have to explicitly type :set mouse=a in ex mode before it will work.  Am I missing something?
    Here's what I've got in my .vimrc (linked also ~/.gvimrc) so far:
    " (G)vim settings
    set nocompatible " use gVim defaults
    colorscheme wombat " define syntax color scheme
    syntax on " enable syntax highlighting
    set mouse=a " make sure mouse is used in all cases.
    set backspace=2 " full backspacing capabilities
    set nocindent " set C style indenting off
    set cmdheight=2 " command line height
    set ignorecase " ignore case in search patterns
    set laststatus=2 " occasions to show status line, 2=always.
    set ruler " ruler display in status line
    set showmode " show mode at bottom of screen
    set number " toggle line numbers
    set nobackup " disable backup files (filename~)
    set hlsearch " highlight all search results
    set showmatch " show matching brackets (),{},[]
    " Gvim Settings
    set guioptions-=T " disable toolbar icons
    set guifont=Consolas\ 8 " backslash any spaces
    SOLVED: Silly me I was running 'vi' which has no X support... pacman -S vim fixed it fine.
    Last edited by thayer.w (2007-09-04 00:02:49)

    I just had an issue with no sound after recent updates.  Not sure it's the same problem you are having. 
    I found I had to open Audio Mixer, select Sound card: HDA Intel PCH (Alsa mixer), Select Controls, check box for Speaker and check box for Headphones.  After doing this I found the Speaker volume was set at minimum (although Master and PCM were already set at maximum).  Adjusted Speaker volume up and I finally had sound again.

  • [solved] Non-alphanumeric characters broken in TinyChat

    Hello, fellow archers.
    I've been having a bit of trouble with the TinyChat site. Most non-alphanumeric characters are being displayed as crossed-out boxes. This problem is exclusive to TinyChat and has not occured in any other Flash applications.
    An example of the broken characters:
    Note how the / and > characters are not broken.
    This is the second installation of ArchLinux on my computer, the problem occured on the current install only. I suspect the problem is caused by a missing package, though the only hint I was able to find was installing the ttf-ms-fonts package (https://wiki.archlinux.org/index.php/br … ash_Player). This did not resolve the issue.
    Package versions:
    firefox 34.0.5-1
    flashplugin 11.2.202.425-1
    I'll gladly provide any other information that could help resolve this issue.
    Last edited by skoftoby (2015-01-21 18:31:26)

    Head_on_a_Stick wrote:
    skoftoby wrote:I'd like to request this topic be marked as solved either way.
    As with most things Arch, you have to do this yourself -- edit the title of your first post & put "[SOLVED]" at the beginning.
    Whops. The subject length was exactly at the maximum length, and since I couldn't edit the title any further, I thought a moderator had to edit it. Apologies!

  • [SOLVED] update removed menu items in lxpanel menu & in gnome-panel

    when i start gnome-panel, the 'applications' drop down is empty, and 'system' no longer contains the 'administration' and 'preferences' items.
    in lxpanel, the menu only shows 'run' and 'logout'.
    i wanted to see if alacarte still showed things, so i ran alacarte from a terminal (which normally works)...
    [chris: ~]$ alacarte
    Traceback (most recent call last):
    File "/usr/bin/alacarte", line 36, in <module>
    main()
    File "/usr/bin/alacarte", line 32, in main
    app = MainWindow(datadir, version, sys.argv)
    File "/usr/lib/python2.6/site-packages/Alacarte/MainWindow.py", line 48, in __init__
    self.editor = MenuEditor()
    File "/usr/lib/python2.6/site-packages/Alacarte/MenuEditor.py", line 36, in __init__
    self.__loadMenus()
    File "/usr/lib/python2.6/site-packages/Alacarte/MenuEditor.py", line 60, in __loadMenus
    self.settings.dom = xml.dom.minidom.parse(self.settings.path)
    File "/usr/lib/python2.6/xml/dom/minidom.py", line 1918, in parse
    return expatbuilder.parse(file)
    File "/usr/lib/python2.6/xml/dom/expatbuilder.py", line 924, in parse
    result = builder.parseFile(fp)
    File "/usr/lib/python2.6/xml/dom/expatbuilder.py", line 211, in parseFile
    parser.Parse("", True)
    xml.parsers.expat.ExpatError: no element found: line 1, column 0
    naturally, starting alacarte by right clicking on gnome-menu -> edit menus also does nothing.
    i looked at /usr/lib/python2.6/site-packages/Alacarte/MainWindow.py with cat, and there is nothing super-obviously wrong with the script.
    also:
    [chris: ~]$ ls /usr/share/applications
    abiword.desktop
    alacarte.desktop
    aldm-gui.desktop
    assistant.desktop
    at-properties.desktop
    avahi-discover.desktop
    banshee-1-audiocd.desktop
    banshee-1.desktop
    banshee-1-media-player.desktop
    baobab.desktop
    *and so on*
    so those didn't vanish.
    any ideas?
    Last edited by earthpig (2009-12-18 21:36:18)

    so i saw this error message....
    ** (gnome-panel:4408): WARNING **: Error loading menu layout from "/home/chris/.config/menus/settings.menu": Error on line 1 char 1: Document was empty or contained only whitespace
    the file was empty. and what do we do with broken config files in ~? why, we hide them, of course!
    [chris: ~/.config/menus]$ mv settings.menu settings.menubackup
    now gnome-panel works, but alacarte (menu editor) and lxpanel's menu is still busted.
    now that i am getting somewhere, im gonna keep posting as i trace this down so others that may come across this same issue can benefit.
    edit: renamed ~/.config/menus/lxde-applications.menu to .menubackup and restarted lxpanel, it works now.
    edit2:
    alacarte is giving me this...
    IOError: [Errno 13] Permission denied: '/home/chris/.config/menus/applications.menu'
    and sure enough, pcmanfm told me that the file belonged to root.
    sudo pcmanfm, navigated to that file, right click -> properties -> permissions -> changed owner to chris and group to users.
    alacarte works now, too.
    i think im going to go through and recursively make everything in each ~ folder belong to the username it should just in case permissions got jumbled somewhere/anywhere else.
    just so i know: did this happen to anyone else that updated within the last 24 hours or so?
    (so i can learn if it was something *I* did, or if it was something that came with the *update*)
    Last edited by earthpig (2009-12-18 21:33:11)

Maybe you are looking for

  • 15" Apple Studio Display dropped and now messed up.

    The display was sitting on my bed and it somehow fell off, falling a about 2 feet onto books, a camcorder case, the leg of a desk, and other papers. It was all carpeted. Half the screen shows lines and things and it is not good. file:///Users/bowen/D

  • Payroll (retro active payroll driver )

    Hi experts,                  How to get the previous payroll results from retro active payroll driver program.Please me let me know how to get the data from function module. Thanks, snikitha.

  • Putting a Flash Intro on iweb

    I brought a flash intro in .fla format and I was using FTP for mac to upload the flash intro to my iweb. What is the FTP server for site of iweb.

  • Workflow Attribute Set

    Hai frnds, I am a newbie to oracle workflow.May I know how to create oracle Workflow Attribute Set

  • It is imposible to install Adobe Flash player 11.1

    It is imposible to install Adobe Flash player, in Explorer it works without problems?