Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6371103
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T01:01:04+00:00 2026-05-25T01:01:04+00:00

Vim users would be familiar with getting into and viewing the current directory listing

  • 0

Vim users would be familiar with getting into and viewing the current directory listing by using

:o .

In this directory view, we are able to give additional commands like d and vim will respond with “Please give directory name:”. This of course allows us to create a new directory in the current directory once we provide a directory name to vim.

Similarly, we can delete an empty directory by first moving our cursor down to the listing that underlines the specific directory we want to remove and typing D.

The problem is, vim does not allow us to delete a non-empty directory.

Is that any way to insist that we delete the non-empty directory?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T01:01:05+00:00Added an answer on May 25, 2026 at 1:01 am

    The directory view you’re referring to is called netrw. You could read up on its entire documentation with :help netrw, but what you’re looking for in this case is accessible by :help netrw-delete:

    The g:netrw_rmdir_cmd variable is used to support the removal of directories.
    Its default value is:

    g:netrw_rmdir_cmd: ssh HOSTNAME rmdir

    If removing a directory fails with g:netrw_rmdir_cmd, netrw then will attempt
    to remove it again using the g:netrw_rmf_cmd variable. Its default value is:

    g:netrw_rmf_cmd: ssh HOSTNAME rm -f

    So, you could override the variable that contains the command to remove a directory like so:

    let g:netrw_rmf_cmd = 'ssh HOSTNAME rm -rf'
    

    EDIT: Like sehe pointed out, this is fairly risky. If you need additional confirmation in case the directory is not empty, you could write a shell script that does the prompting. A quick google turned up this SO question: bash user input if.

    So, you could write a script that goes like this:

    #! /bin/bash
    
    hostname = $1
    dirname  = $2
    
    # ...
    # prompt the user, save the result
    # ...
    
    if $yes
    then
      ssh $hostname rm -rf $dirname
    fi
    

    Then, set the command to execute your script

    let g:netrw_rmf_cmd = 'safe-delete HOSTNAME'
    

    A lot of careful testing is recommended, of course :).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using VIM 7.1.314 and would like to yank the names (chris, robert,
For someone just starting to program, would you recommend using vim/emacs, or should you
ViM has this option hlsearch where a searched string is displayed in highlight mode
Using Vim I often want to replace a block of code with a block
In Vim editor I opted ]I on a function (in C++ code). This presented
Using Vim, I'm trying to pipe text selected in visual mode to a UNIX
I'v been using vim/gVim so far in my Linux Machine, and I have a
I'm using Vim + Ack.Vim and am flummoxed on how to ignore hits within
First of all, I love vim. I have been using vim for a few
I'm specifically interested in tools that can be plugged into Vim to allow CScope-style

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.